CUDA 11.x CMAKE Error CUDA_nppi_LIBRARY (ADVANCED)

原因是CUDA11中 nppicom被移除 解决方法

FindCUDA: Do not search for the deprecated nppicom when CUDA >= 11 (!4929) · Merge requests · CMake / CMake · GitLab

Modules/FindCUDA.cmake文件中

这一条find_cuda_helper_libs(nppicom)

替换为if(CUDA_VERSION VERSION_LESS "11.0")

        find_cuda_helper_libs(nppicom)

         endif()

你可能感兴趣的:(opencv,caffe)