You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get a sample working, Im using VS2019, Cuda 11.4,windows 10,
I created a new google test project
added cuda 11.4 build dependancy
added the include folders to C++ general
copied the code from samle_01_add/add.cu into test.cpp
still had a lot of errors showing
added
just before #include <cuda.h>
all errors seem to be gone except one. kernel_add << <(INSTANCES + 3) / 4, 128 >> > (report, gpuInstances, INSTANCES);
the single < is underlined and says expected an expression.
any suggestions are welcome, thank you
The text was updated successfully, but these errors were encountered:
I'm trying to get a sample working, Im using VS2019, Cuda 11.4,windows 10,
I created a new google test project
added cuda 11.4 build dependancy
added the include folders to C++ general
copied the code from samle_01_add/add.cu into test.cpp
still had a lot of errors showing
added
just before #include <cuda.h>
all errors seem to be gone except one.
kernel_add << <(INSTANCES + 3) / 4, 128 >> > (report, gpuInstances, INSTANCES);
the single < is underlined and says expected an expression.
any suggestions are welcome, thank you
The text was updated successfully, but these errors were encountered: