This tag refers to nvcc, NVIDIA's CUDA C/C++ compiler toolchain.
0
votes
1answer
31 views
A mix of c++ and cublas code isn't compiling
So I have this code that's suppose to compute the dot product of a matrix in different ways (one of which is to use blas in a c++), but when I try to use nvcc to compile the code, it doesn't work and ...
0
votes
1answer
31 views
nvcc fatal: A single input file is required for a non-link phase when an outputfile is specified
I'm getting this problem with Nsight Eclipse. I just installed my Cuda Toolkit 5.0 I have a project which uses several C files and one Cuda file.
I read that sometimes the problem arises when you use ...
2
votes
1answer
35 views
CUDA NVCC compiler binary variable
I'm trying do to something like this in CUDA:
char_sig=code[k][1] & 0b00000010;
And the NVCC compiler keeps giving me the error expected a ";"
The same code works with GCC C compiler. I ...
0
votes
0answers
21 views
nvcc and X11 libraries - Undefined symbols for architecture i386
So I'm developing an application that uses both CUDA and X11 on Mac OS X mountain lion with nsight. In nsight I set up include paths for my project
Properties -> Build -> Settings -> NVCC ...
3
votes
0answers
56 views
Nested templated class: unable to match function definition to an existing declaration
Using MSVC++ 2010 (NVCC (CUDA) compiler), defining a nested templated class member of a non-templated parent class outside its declaration block:
class cls {
public:
template <typename V> ...
0
votes
1answer
30 views
nvcc runs from command line but not from shell [closed]
I tried to run this command form command line:
nvcc src/lib/Globals.cpp src/lib/Comp/* src/lib/Decomp/* src/main.cpp -lpthread -o debug/TEST
it runs perfectly,generates errors or warnings when ...
0
votes
1answer
45 views
Makefile leads to compilation error
I'm trying to compile a program (which isn't mine):
make -f makefile
... using the following makefile:
# Compiler for .cpp files
CPP = g++
# Use nvcc to compile .cu files
NVCC = nvcc
NVCCFLAGS = ...
0
votes
1answer
59 views
Creating DLL from CUDA using nvcc
I want to create a .dll from a CUDA code (kernel.cu) in order to use this library from an external C program. After some attempts I just left a simple C function in .cu file. Code follows:
kernel.cu
...
0
votes
2answers
31 views
CUDA linkage error
These commands were generated procedurally by a Makefile that I essentially copied from NVIDIA's tutorial pages; it's over 100 lines long and will post it if you think it's necessary, but these ...
0
votes
1answer
42 views
Why does the matrix inversion complied using “nvcc” without “-g -G” occur an error?
Next program is going to inverse a matrix on GF(2^8)(addition is similar to XOR,multiplication applys table loop-up method) using Gauss-Jordan elimination on NVIDIA GeForce 310 GPU,CUDA v4.2.
typedef ...
1
vote
2answers
143 views
How to link host code with a static CUDA library after separable compilation?
Alright, I have a really troubling CUDA 5.0 question about how to link things properly. I'd be really grateful for any assistance!
Using the separable compilation features of CUDA 5.0, I generated a ...
1
vote
1answer
102 views
CUDA bug with threadIdx?
I think I hit a CUDA bug. Can someone confirm/comment the code (see below).
The code (attached) will produce different results depending on the "BUG" define. With BUG=0 the result is 8 (correct), ...
0
votes
0answers
33 views
compile Cuda including hdf5lib
At the moment i try to write a makefile for windows for my program. I want to compile it in the cmd on an arbitary system (which must have the cuda and hdf5 libraries...)
In linux I got the right ...
-1
votes
1answer
97 views
nvcc: error: identifier undefined, but it's defined
I have a CUDA C code that when I try to compile it, nvcc complains with an undefined identifier error, but the variable it really exits!
extern "C"
void vRand3f_cuda (vec3f *d_v, int n)
{
...
-1
votes
1answer
73 views
nvcc error on ubuntu 11.10 “don't know what to do with…”
I've tried to install the cuda toolkit 5.0 on ubuntu 11.10. I think the installation went well
I'm trying to test it by running the deviceQuery example. But when I run nvcc deviceQuery from the ...
1
vote
1answer
74 views
What is the result with NVCC option “-arch=20 -code=20” on NVIDIA GeForce 310 (CC=1.2)?
everybody! I compile a CUDA program using NVCC with option "-arch=20 -code=20" on my GeForce 310 GPU (CC=1.2),and It seems to run normally as follow.
...
2
votes
1answer
75 views
selectively compile headers and class functions in CUDA
I am attempting to utilize my c++ classes within CUDA.
I have a class as such:
#include<string>
#include<stdlib.h>
class exampleClass{
int i;
__host__ __device__ exampleClass(int ...
0
votes
1answer
66 views
How can I run nvcc in cmake's try_run?
I try to set compute capability flag of nvcc in stage of cmake by compiling and running simple test:
#include <cuda.h>
#include <cuda_runtime.h>
#include <stdio.h>
int main(int ...
1
vote
0answers
119 views
Why does my CUDA program complied by nvcc with -code=sm_20 slower than with -code=sm_12 on Tesla C2050 GPU?
I'm confused by my CUDA Random Linear Network Coding (actually a matrix multiplication in GaloisField(2^8)) program as follow.
There isn't any float point value in my program.
typedef unsigned ...
1
vote
1answer
53 views
CUDA Makefile nvcc Error
I'm attempting to compile a basic CUDA matrix multiplication program, but I'm running into this error:
nvcc -I. -I/usr/local/cuda/include -c matrixMult1.cu -o matrixMult1.o
make: nvcc: Command not ...
0
votes
1answer
96 views
Invoking nvcc.exe using CreateProcess
We currently use a mock JIT compiler for CUDA, where nvcc.exe is invoked on some files and the resulting .ptx files are generated.
bool executeWindowsProcess(ofstream &logFF) {
STARTUPINFO ...
0
votes
2answers
76 views
Building cuda and boost library with Makefile
I have a makefile:
projectx: component1.obj \
nvcc -O3 -arch=sm_20 -lcuda -o projectx component2.obj
component1.obj : component1.cu component1.h
nvcc -O3 -arch=sm_20 -c component1.cu
...
2
votes
1answer
205 views
CUDA 5.0: CUBIN and CUBLAS_device, compute capability 3.5
I'm trying to compile a kernel that uses dynamic parallelism to run CUBLAS to a cubin file.
When I try to compile the code using the command
nvcc -cubin -m64 -lcudadevrt -lcublas_device -gencode ...
3
votes
1answer
197 views
C++ keywords on CUDA C code
I am using CUDA to accelerate some parts of a C program. This program makes use of some C++ keywords as identifiers, so it doesn't compile as C++. Now that I changed it with CUDA, how can I compile it ...
1
vote
1answer
90 views
Using CImg: LNK1181: cannot open file “m.lib” on windows 7 x64
In the CImg Makefile I notice a flag "-lm" I think this points to the m.lib file. But for some reason it cannot find it during the Linking phase. I am compiling the code using the following command:
...
1
vote
2answers
85 views
Template parameter as function specifier and compiler optimization
I have found this very useful post and I`d like to clarify something about the compiler optimizations. Lets say we have this function (same like in the original post):
template<int action>
...
1
vote
2answers
66 views
CUDA: commands don't work after nvcc
I am trying to compile a .cu program with nvcc and after every time I try and compile in Unix, my commands no longer work. I get an error:
'command': command not found.
Why is that? I have to ...
0
votes
0answers
101 views
CUDA 4.2 - cannot compile host and device code
I wish to compile a c++ class which contains both host and device code. The host uses vtk in the constructor and I don't think this can be compiled by nvcc on its own, since I am getting the message: ...
1
vote
2answers
103 views
Why does nvcc fail allow casting a pointer of type T * to void *?
With the following trivial deleter
struct CudaDeleter{ void operator()(void * ptr) { cudaFree( ptr ); } };
I get the following errors when using the deleter in code compiled with nvcc. The same ...
0
votes
0answers
46 views
What pragmas are supported by llvm based nvcc?
As per this exchange from the mid 2010s the llvm compiler did not support per-loop pramgas.
As per this exchange from the mid 2011s and the documentation here, getting llvm to unroll a for-loop ...
0
votes
0answers
49 views
NVCC cannot work with Intel's Compiler? [duplicate]
I am trying to do some coding on GPU, and I have visual studio and intel composer installed, when I start a CUDA Project, wrote the code then compile, everything will be fine if I ask MS's compiler to ...
3
votes
4answers
143 views
differences between virtual and real architecture of cuda
Trying to understand the differences between virtual and real architecture of cuda, and how the different configurations will affect the performance of the program, e.g.
-gencode ...
2
votes
0answers
151 views
CUDA --ptxas-options=“-v” not showing any output
I have Visual Studio 2008 on 64-bit Windows. Trying to build the CUDA program by adding --ptxas-options="-v" in CUDA->Command Line->Additional Options. I still don't see the ptxas info as in this ...
0
votes
1answer
76 views
cudaMalloc is not modifying return pointer when called inside template function
Following sample problem:
#include <iostream>
using namespace std;
__device__ __constant__ float* data;
template<class T> void allocOnly(T* deviceDest, size_t numElem)
{
cudaError_t ...
2
votes
1answer
65 views
How are registers assigned in CUDA compilation
It is said that the number of registers per kernel is important for CUDA optimization, and the upper boundary of this number can be set by "-maxrregcount=N" in nvcc. I could not understand this, ...
0
votes
1answer
173 views
nvcc: No such file or directory
Please pardon my noob-ness. Our research group recently purchased a server with 2 NVIDIA Tesla units in it and I'm in charged of setting it up.
The server unit is running Rocks 6.0.
So I install the ...
0
votes
1answer
39 views
How to use CUDA_FORCE_PTX_JIT?
According to NVIDIA Programming Guide:
Any PTX code loaded by an application at runtime is compiled further
to binary code by the device driver. This is called just-in-time
compilation. ...
2
votes
2answers
230 views
undefined reference error for linking CUDA static or shared library with gcc
gcc and CUDA question
Hi,
I have compiled a CUDA shared library but can't link it with the main program that uses it. I am compiling the main program with gcc.
The code:
simplemain.c
#include ...
0
votes
1answer
80 views
How to trap a bug in CUDA that reset the machine
I've implemented a kernel that compute distances among vectors. The program run as expected and the results are the same as in CPU. The program free the resources used in the device ( cudaFree ) and ...
1
vote
1answer
137 views
why nvcc is not happy with functor
code of hc.cu:
//patch for g++4.7
#ifdef _GLIBCXX_ATOMIC_BUILTINS
#undef _GLIBCXX_ATOMIC_BUILTINS
#endif
#ifdef _GLIBCXX_USE_INT128
#undef _GLIBCXX_USE_INT128
#endif
struct pi_
{
double ...
1
vote
0answers
339 views
CUDA 5.0 wants the libcudart from CUDA 4.0?
I just upgraded from CUDA 4.2 to CUDA 5.0. Not surprisingly, the library that used to be named libcudart.so.4 is now called libcudart.so.5.0. After recompiling my code with nvcc 5.0, and attempting to ...
1
vote
1answer
345 views
Cuda 5.0 linking errors
My project was compiling fine with CUDA 4.2 development environment on Linux machine.
Recently it was upgraded to CUDA 5.0, and now the compilation fails with the following error messages.
In file ...
0
votes
1answer
94 views
Does the CUDA compiler optimize the kernel based on the passed parameters?
I have a simple CUDA kernel that counts number of A's in a 1000 byte fragment
of a very large string. The database is laid out so that memory accesses are
coalesced. After returning from the kernel ...
1
vote
2answers
1k views
CUDA nvcc compiler setup Ubuntu 12.04
I successfully installed the nvidia driver and toolkit for cuda 5 (but not the samples) on a 64 bit Ubuntu 12.04 box. The samples failed to install even though I previously ran
$ sudo apt-get ...
0
votes
0answers
39 views
nvcc const operator is used for non const member
i got the following situation (cuda-project):
Template Class A (template type is T) provides:
__device__ T& operator[](size_t position);
__device__ const T& operator[](size_t position) ...
0
votes
0answers
58 views
CUDA compile boost polygon library errors
I used nvcc 4.2, gcc 4.1.2, Redhat 5.0 to compile boost polygon library, but get lots of errors.
All of them are "_T10 has not been declared" in many *.hpp files,
however, there's no variable named ...
1
vote
1answer
101 views
Why don't the CUDA compiler intrinsics __fadd_rd etc work for me?
Why can't I use these compiler intrinsics in CUDA 5.0?
In Visual Studio 2010, with CUDA toolkit 5.0 and Nsight installed I am able to compile and run most CUDA code, but __fadd_ru etc are reported as ...
0
votes
1answer
210 views
Error when compiling CUDA on Ubuntu 12.04. redefinition of variables
I am trying to compile a CUDA program that has worked before on vaious other platforms but I am getting the following error now:
In file included from /usr/local/cuda-5.0/bin/crt/link.stub:79:0:
...
0
votes
0answers
133 views
What are some possible causes of a segmentation fault when using the nvcc CUDA compiler?
I have a CUDA class, let's call it A, defined in a header file. I have written a test kernel which creates an instance of class A, which compiles fine and produces the expected result.
In addition, ...
0
votes
1answer
252 views
dyld: Library not loaded error on Eclipse Nsight on Mac
I've installed Cuda 5.0 (Preproduction Release) on my iMac which has an NVIDIA GeForce 9400 Cuda-enabled GPU. Using the bundled Eclipse Nsight, I created a project and built it successfully. But, when ...
