1 | initial version |
Ok, I figured it out. You have to tell the nvcc compiler to create binary code for the new device generation (compute capability 5.2 instead of 3.0 for the old card). When building the OpenCV project with cmake there is a variable CUDA_ARCH_BIN
in the CUDA
group that is currently set to 1.1 1.2 1.3 2.0 2.1(2.0) 3.0 3.5
per default. I added 5.2
to the list, generated and compiled again. Now it works fine.