|
|
|
@ -787,8 +787,8 @@ if(NOT CUDA_VERSION VERSION_LESS "3.2") |
|
|
|
|
find_cuda_helper_libs(nvcuvid) |
|
|
|
|
endif() |
|
|
|
|
endif() |
|
|
|
|
if(CUDA_VERSION VERSION_GREATER "5.0") |
|
|
|
|
# In CUDA 5.5 NPP was splitted onto 3 separate libraries. |
|
|
|
|
if(CUDA_VERSION VERSION_GREATER "7.5") |
|
|
|
|
# In CUDA 8.0 NPPI was split in to many libraries. |
|
|
|
|
find_cuda_helper_libs(nppc) |
|
|
|
|
find_cuda_helper_libs(nppial) |
|
|
|
|
find_cuda_helper_libs(nppicc) |
|
|
|
@ -803,6 +803,12 @@ if(CUDA_VERSION VERSION_GREATER "5.0") |
|
|
|
|
find_cuda_helper_libs(npps) |
|
|
|
|
set(CUDA_nppi_LIBRARY "${CUDA_nppial_LIBRARY};${CUDA_nppicc_LIBRARY};${CUDA_nppicom_LIBRARY};${CUDA_nppidei_LIBRARY};${CUDA_nppif_LIBRARY};${CUDA_nppig_LIBRARY};${CUDA_nppim_LIBRARY};${CUDA_nppist_LIBRARY};${CUDA_nppisu_LIBRARY};${CUDA_nppitc_LIBRARY}") |
|
|
|
|
set(CUDA_npp_LIBRARY "${CUDA_nppc_LIBRARY};${CUDA_nppi_LIBRARY};${CUDA_npps_LIBRARY}") |
|
|
|
|
elseif(CUDA_VERSION VERSION_GREATER "5.0") |
|
|
|
|
# In CUDA 5.5 NPP was split in to 3 separate libraries. |
|
|
|
|
find_cuda_helper_libs(nppc) |
|
|
|
|
find_cuda_helper_libs(nppi) |
|
|
|
|
find_cuda_helper_libs(npps) |
|
|
|
|
set(CUDA_npp_LIBRARY "${CUDA_nppc_LIBRARY};${CUDA_nppi_LIBRARY};${CUDA_npps_LIBRARY}") |
|
|
|
|
elseif(NOT CUDA_VERSION VERSION_LESS "4.0") |
|
|
|
|
find_cuda_helper_libs(npp) |
|
|
|
|
endif() |
|
|
|
|