Merge pull request #23012 from cudawarped/fix_win32_cuda_warning

Fix nvcc compile errors when built against CUDA SDK < 11.2
pull/23017/head
Alexander Smorkalov 2 years ago committed by GitHub
commit 645930387c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cmake/OpenCVDetectCUDA.cmake

@ -427,7 +427,7 @@ if(CUDA_FOUND)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS} -Xcompiler -fno-finite-math-only)
endif()
if(WIN32)
if(CUDA_VERSION VERSION_GREATER_EQUAL 11.2 AND WIN32)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS} -Xcudafe --display_error_number --diag-suppress 1394,1388)
endif()

Loading…
Cancel
Save