cjolivier01 commented on a change in pull request #9672: CMake CUDA fixes + NCCL
URL: https://github.com/apache/incubator-mxnet/pull/9672#discussion_r165534511
##########
File path: CMakeLists.txt
##########
@@ -168,12 +167,43 @@ endif()
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
-if(FIRST_CUDA)
+if(USE_CUDA)
+ find_package(CUDA REQUIRED)
+ add_definitions(-DMSHADOW_USE_CUDA=1)
+ if(FIRST_CUDA AND (NOT USE_OLDCMAKECUDA))
+ if(CUDA_TOOLSET STREQUAL "")
+ set(CUDA_TOOLSET "${CUDA_VERSION_STRING}")
Review comment:
yeah, in FindCUDA.cmake -- find_package(CUDA)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
|