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)
Why does this OpenMP code compile with g++, but fail with nvcc?
I'm trying to compile this code that uses OpenMP. When I compile it with nvcc, it gives an error that appears to be complaining about a token that isn't even there.
Here's a minimal version of my cod...

Daniel Giger
Votes: 0
Answers: 1
Getting "nvcc preprocessing ... failed error" - Pycuda
I am trying to use PyCuda right now. I followed the tutorial on the official page and this code is working perfectly in my environment.
import pycuda.driver as cuda
import pycuda.autoinit
from pycuda....
Tuna Yüce
Votes: 0
Answers: 0
Error on building a Cuda static library from Visual Studio 2019 on Windows 10
I am trying to build a cuda static library using Visual Studio 2019. My end goal is to link this .lib file from a Unreal Engine C++ script.
Expected result is a .lib file in the x64/Release folder but...
lfz
Votes: 0
Answers: 1
How Cuda compilation process takes place?
According to NVIDIAs Programming Guide:
Source files for CUDA applications consist of a mixture of
conventional C++ host code, plus GPU device functions. The CUDA
compilation trajectory separates the...
enrique
Votes: 0
Answers: 1