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
Problem appears by linking CUDA library.
Interaction.cu has tensor3 class and has no inconvenients to be linked.
BUT Subdomain.cu seems ti be the problem
Problem is in passing subdomain from HOST to DEVICE.
Subdomain is defined in host
__host__ void StartAcceleration(SubDomain &sd); // This is the buffer function which calls the kernel
__global__ void StartAccelerationKernel(SubDomain &sd);
ptxas fatal : Unresolved extern function '_ZN7tensor3clEii'
make[2]: *** [src/cuda/CMakeFiles/cuda.dir/build.make:102: src/cuda/CMakeFiles/cuda.dir/SubDomain.cu.o] Error 255
make[1]: *** [CMakeFiles/Makefile2:162: src/cuda/CMakeFiles/cuda.dir/all] Error 2
The text was updated successfully, but these errors were encountered: