CMakeLists.txt 325 字节
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)
W
Wilber 已提交
8
cc_library(cuda_stream SRCS cuda_stream.cc DEPS enforce boost eigen3 ${MKLDNN_CTX_DEPS})
9
ENDIF()
10 11 12 13

IF(WITH_ASCEND_CL)
cc_library(npu_stream SRCS npu_stream.cc DEPS enforce boost stream_callback_manager)
ENDIF()