When i try to run training example of cuda-convnet2 i get this error :
src/nvmatrix.cu(394) : getLastCudaError() CUDA error : kSetupCurand: Kernel
execution failed : (8) invalid device function .
I have GTX 980 on my machine and it has compute capability 5.2
I tried to modify makefiles in cudaconv3 & cudaconvnet & nvmatrix like this and
to add 52 instead of 50 tooand i stil have same error.
GENCODE_SM35 := -gencode arch=compute_35,code=sm_35
GENCODE_FLAGS := $(GENCODE_SM35)
to
GENCODE_SM35 := -gencode arch=compute_35,code=sm_35
GENCODE_SM50 := -gencode arch=compute_50,code=sm_50
GENCODE_FLAGS := $(GENCODE_SM50)
Original issue reported on code.google.com by
Afterma...@gmail.comon 11 Apr 2015 at 9:21Attachments: