CMakeLists.txt 205 字节
Newer Older
1 2 3 4 5 6
IF(WITH_MKLDNN)
    set(MKLDNN_CTX_DEPS mkldnn)
ELSE()
    set(MKLDNN_CTX_DEPS)
ENDIF()

7
IF(WITH_GPU OR WITH_ROCM)
8
cc_library(cuda_stream SRCS cuda_stream.cc DEPS enforce boost ${MKLDNN_CTX_DEPS})
9
ENDIF()