CMakeLists.txt 617 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
IF(WITH_GPU)
    add_subdirectory(cuda)
    nv_library(gpu_info SRCS gpu_info.cc DEPS cuda_info gflags glog enforce monitor dynload_cuda)

    nv_test(cuda_helper_test SRCS cuda_helper_test.cu)
    nv_test(cudnn_desc_test SRCS cudnn_desc_test.cc DEPS dynload_cuda)
ELSEIF(WITH_ROCM)
    add_subdirectory(rocm)
    hip_library(gpu_info SRCS gpu_info.cc DEPS rocm_info gflags glog enforce monitor dynload_cuda)

    hip_test(cuda_helper_test SRCS cuda_helper_test.cu)
    hip_test(cudnn_desc_test SRCS cudnn_desc_test.cc DEPS dynload_cuda)
ENDIF()

cc_library(gpu_resource_pool SRCS gpu_resource_pool.cc DEPS gpu_info)