Tagged Questions
This tag refers to nvcc, NVIDIA's CUDA C/C++ compiler toolchain.
5
votes
2answers
3k views
CUDA compiler (nvcc) macro
Is there a #define compiler (nvcc) macro of CUDA which I can use? (Like _WIN32 for Windows and so on.)
I need this for header code that will be common between nvcc and VC++ compilers. I know I can go ...
3
votes
3answers
263 views
Cuda with Boost
I am currently writing a CUDA application and want to use the boost::program_options library to get the required parameters and user input.
The trouble I am having is that NVCC cannot handle ...
3
votes
2answers
765 views
cuda with mingw - updated
We have been developing our code in linux, but would like to compile a windows executable. The old non-gpu version compiles just fine with mingw in windows, so I was hoping I'd be able to do the same ...
3
votes
4answers
1k views
nvcc -Xptxas –v compiler flag has no effect
I have a CUDA project. It consists of several .cpp files that contain my application logic and one .cu file that contains multiple kernels plus a __host__ function that invokes them.
...
2
votes
4answers
291 views
Simplest Possible Example to Show GPU Outperform CPU Using CUDA
I am looking for the most concise amount of code possible that can be coded both for a CPU (using g++) and a GPU (using nvcc) for which the GPU consistently outperforms the CPU. Any type of algorithm ...
2
votes
1answer
102 views
CUDA: Unaligned Memory Access Not Supported: What am I missing?
There are a few questions similar to this but in this case, its a bit weird; NVCC 3.1 doesn't like this but 3.2 and 4.0RC do;
float xtmp[MAT1];
for (i=0; i<MAT1; i++){
xtmp[i]=x[p[i]]; ...
2
votes
2answers
440 views
What are the default values for arch and code options when using nvcc?
When compiling your CUDA code, you have to select for which architecture your code is being generated. nvcc provides two parameters to specify this architecture, basically:
arch specifies the ...
2
votes
1answer
537 views
VS2010 compiler and cuda error: linkage specification is incompatible with previous “hypot”
When I try to build my project on a 64 bit Windows 7 using VS 2010 in Debug 64 bit configuration I get this error along with two other errors.
error: linkage specification is incompatible with ...
2
votes
3answers
798 views
CUDA: NVCC gives controlling expression is constant warning on assert
I get the warning controlling expression is constant on assert statement like this:
assert(... && "error message");
Why this warning on this assert? How can I suppress this warning?
NVCC ...
1
vote
2answers
129 views
CUDA and nvcc: using the preprocessor to choose between float or double
The problem:
Having a .h, I want to define real to be double if compiling for c/c++ or for cuda with computing capability >= 1.3. If compiling for cuda with computing capability < 1.3 then define ...
1
vote
0answers
104 views
CUDA linker error: undefined reference to main
I'm trying to compile a CUDA program in Linux and I get the following linker error:
/usr/lib/gcc/x86_64-redhat-linux/4.4.4/../../../../lib64/crt1.o: In function `_start':
(.text+0x20): undefined ...
1
vote
2answers
104 views
Writing a CUDA kernel to replace an equivalent CPU-only function
I have some .cpp files which implement Smoothed Particle hydrodynamics, which is a particle method for modelling fluid flow.
One of the most time consuming components in these particle techniques is ...
1
vote
1answer
131 views
Why does nvcc fails to compile a CUDA file with boost::spirit?
I'm trying to integrate CUDA to an existing aplication wich uses boost::spirit.
Isolating the problem, I've found out that the following code does not copile with nvcc:
main.cu:
#include ...
1
vote
1answer
389 views
How to compile OpenCV code using a Cuda shared library compiled using nvcc?
For a test I have written a code of matrix multiplication in C(cuda) and compiled it using nvcc to create shared library using following command.
nvcc -c MatMul.cu -o libmatmul.so
Then i wrote a ...
1
vote
2answers
163 views
Pass preprocessing variable to NVCC for compiling CUDA?
when I compile my CUDA code with NVCC and I have already defined a preprocessing variable in the code, e.g. #define DEBUG_OUTPUT 0, is there a way to overwrite such a variable on the fly when ...
1
vote
1answer
204 views
How do you get NVCC to include macro definition information?
Normally with gcc you can specify the level of debugging information with -g and if you use -g3 it will include preprocessor macro definitions in the executable which debuggers like gdb can read and ...
1
vote
1answer
280 views
cuda code #define error, expected a “)”
in the following code, if I bring the #define N 65536 above the #if FSIZE, then I get the following error:
#if FSIZE==1
__global__ void compute_sum1(float *a, float *b, float *c, int N)
{
#define N ...
1
vote
2answers
2k views
CUDA: cudaMemcpy only works in emulation mode
I am just starting to learn how to use CUDA. I am trying to run some simple example code:
float *ah, *bh, *ad, *bd;
ah = (float *)malloc(sizeof(float)*4);
bh = (float *)malloc(sizeof(float)*4);
...
1
vote
1answer
842 views
error in nvcc using emulation mode
The error I get is this
"C:\CUDA\bin\nvcc.exe" -arch sm_10 -ccbin "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin" -deviceemu -D_DEVICEEMU -Xcompiler "/EHsc /W3 /nologo /Od /Zi /MTd " ...
0
votes
0answers
19 views
How can I setup nvcc to use Visual C++ Express 2010 x64 from Windows SDK 7.1?
I'm building 64-bit apps with Visual C++ Express 2010 extended with Windows SDK 7.1 (to add 64 bit compiler). When I use nvcc in 32-bits mode it works well. When I use it in 64-bits mode I get this ...
0
votes
3answers
76 views
compiling error nvcc and BOOST library
nvcc throws
/usr/include/boost/concept/detail/has_constraints.hpp:29: error: ‘&’ cannot appear in a constant-expression
/usr/include/boost/concept/detail/has_constraints.hpp:29: error: template ...
0
votes
1answer
106 views
Default host compiler used by nvcc for linux
I am using CUDA 4.0 on Ubuntu 10.10 with GTX 570 (compute capcability 2.0), with the GCC compiler suite. As I understand it, during compilation the CUDA compiler driver nvcc splits the .cu files into ...
0
votes
1answer
110 views
not able to compile with nvcc
I've installed CUDA on debian,i've successfully ran make file in C folder withing cuda folder.but whn i'm trying to run individual file like matMult.cu with nvcc i'm getting following error
...
0
votes
1answer
116 views
compiling cuda file in makefile error
I have made a makefile in order to compile my files:
CFLAGS = -O3 -Wall -I /usr/local/cuda/include/
NVCCFLAGS = -O3 -arch sm_20
LDFLAGS = -O3 -L/usr/local/cuda/lib64 -lcudart
EXE ...
0
votes
1answer
81 views
nvcc/cuda 3.1 - ghtr-default.h flood of “declared static” but not defined warnings
When compiling a project with nvcc (using cuda 3.1), I'm getting a flood of warnings from gthr-default.h:
...
0
votes
1answer
67 views
nvcc: Combine extern and constant
I would like to organise my CUDA code into separate object files to be linked at the end of compiling, as in C++. To that end I'd like to be able to declare an extern pointer to __constant__ memory in ...
0
votes
1answer
326 views
NVIDIA NVCC and CUDA: Cubin vs. PTX
First sorry my english.
Second this my question:
So I use the CUDA 4.0 arch. with a Compute_Capability 2.0 device (GTX460).
What are the differents between the cubin and the ptx file?
I think the ...
0
votes
2answers
107 views
Error compiling template function in CUDA using nvcc
I have the following CUDA code:
enum METHOD_E {
METH_0 = 0,
METH_1
};
template <enum METHOD_E METH>
inline __device__ int test_func<METH>()
{
return int(METH);
}
__global__ ...
0
votes
0answers
68 views
CUDA Compiler BUG…?
When I compile this template with correct values such that the static assert is correct!
template<int _MaxProxPackagesKernelA, typename _ConvexSet>
class RelaxedSorProxKernelSettings{
public:
...
0
votes
0answers
197 views
nvcc compilation with sys/resource.h in Cygwin?
I was given a CUDA file which had #include within and the file compiles completely fine under an unix environment, but the moment i throw it on cygwin the compiler complains "Cannot open include ...
0
votes
1answer
127 views
Static Assert for NVCC and Compiler Bug
Whats the best way to have a static assert for the NVCC compiler inside a struct which is used for compile time settings:
The following works mostly but sometimes NVCC produces bullshit error ...
0
votes
2answers
125 views
Registers and shared memory depending on compiling compute capability?
Hey there,
when I compile with nvcc -arch=sm_13 I get:
ptxas info : Used 29 registers, 28+16 bytes smem, 7200 bytes cmem[0], 8 bytes cmem[1]
when I use nvcc -arch=sm_20 I get:
ptxas info : ...
0
votes
2answers
106 views
Undefined references to local objects
I'm having problems linking a project using nvcc. They occur with symbols defined inside the project. I have some function symbols defined in the cuda_bvh_constru.o file. This is the nm output for the ...
0
votes
2answers
155 views
CUDA statically allocating data on device
I've been trying to allocate a variable that can be accessed by each kernel function.
My attempt is the code attached below, but it won't compile cause the dArray can't be viewed accessed by the ...
0
votes
0answers
111 views
Pycuda code compilation on Windows 7 fails
I have got Python 2.6 installed and pycuda 0.94. I am working on Windows 7 64 bit using Visual Studio 2008. I am getting issues while trying to compile the Pycuda examples.
While running the ...
0
votes
1answer
113 views
Close a file pointer in Cuda (nvcc)
In gcc, the close function is used to close the file pointer. However my nvcc complier will not allow that. I can't seem to find a cuda-specific call or alias.
Is there a special cuda file pointer ...
0
votes
1answer
94 views
Weird error compiling code that calls Surface low-level CUDA API
This minimal example:
int main()
{
struct surfaceReference* surfaceReferencePointer;
cudaGetSurfaceReference(&surfaceReferencePointer, "surfaceReference");
}
Fails when it is compiled ...
0
votes
3answers
153 views
Cannot overload make_uint4 function
I'm trying to overload make_uint4 in the following manner:
namespace A {
namespace B {
inline __host__ __device__ uint4 make_uint4(uint2 a, uint2 b) { ...
0
votes
1answer
327 views
CUDA: Erroneous lmem statistics displayed for sm_20?
A CUDA kernel compiled with the option --ptxas-options=-v seems to be displaying erroneous lmem (local memory) statistics when sm_20 GPU architecture is specified. The same gives meaningful lmem ...
0
votes
0answers
140 views
CUDA: NVCC warning on controlling expression is constant
nvcc.exe throws up a warning: controlling expression is constant for the following assert() in my .cu host code:
const int val0 = compute( arr0 );
const int val1 = compute( arr1 );
assert( ( val0 == ...
0
votes
1answer
754 views
VS2010 compiler and cuda error: linkage specification is incompatible with previous “hypot”
When I try to build my project on a 64 bit Windows 7 using VS 2010 in Debug 64 bit configuration I get this error along with two other errors.
error: linkage specification is incompatible with ...
0
votes
3answers
482 views
NVCC refuses to link my object files
I am trying to compile a project by compiling object files and then linking them together, nothing fancy:
hello.o : hello.h hello.cu
nvcc hello.cu -c -o hello.o
#...
main.o : $(objs)
nvcc ...
0
votes
2answers
2k views
Why can't nvcc find my Visual C++ installation?
I'm running Windows 7 Pro x64 on a Core i5 with a NVIDIA 3100m, which is CUDA compatible.
I've tried installing both the 32-bit and 64-bit CUDA toolkits from NVIDIA, unfortunately from with either of ...
0
votes
1answer
1k views
Incremental compilation in nvcc (CUDA)
I have many structs (classes) and standalone functions that I like to compile separately and then link to the CUDA kernel, but I am getting the "External calls are not supported" error while compiling ...
0
votes
1answer
258 views
Is it possible to check nvcc compilation with autoconf?
I am trying to test some typical cuda functions during the configure process. How can I write it in my configure.ac? Something like:
AC_TRY_COMPILE([],
[
__global__ static void test_cuda() {
...
0
votes
3answers
651 views
CUDA: What reasons could there be for nvcc taking several minutes to compile?
I have some CUDA code that nvcc (well, technically ptxas) likes to take upwards of 10 minutes to compile. While it isn't small, it certainly isn't huge. (~5000 lines).
The delay seems to come and ...