python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
CUDA do deprecated functions still function in newer versions?
Does the function cudaGLRegisterBufferObject (deprecated after version 3.0) still work in newer versions (ie 6.X) ?
(I know that cudaGraphicsGLRegisterBuffer exists, however I'm doing some work on an ...

user18029267
Votes: 0
Answers: 1
Does __global__ have overhead over __device__?
This question asks the difference between __device__ and __global__.
The difference is:
__device__ functions can be called only from the device, and it is executed only in the device.
__global__ func...
user589321
Votes: 0
Answers: 1
This CUDA code throws the following error when trying to compile. I changed the matrix dimensions to constants but it still doesn't work
ERRORS:
matrix_mul.cu(35): error: expression must have a constant value
matrix_mul.cu(35): note #2689-D: the value of variable "BX"
(33): here cannot be used as a constant
matrix_mul.cu(35...
JindaJatt
Votes: 0
Answers: 1
Can you do C++-style CUDA?
I follow some guidelines to deal with memory management in C++. Some examples: I never use malloc. I almost never need or use new or delete. I use smart pointers, and almost never need to write destru...
user589321
Votes: 0
Answers: 1