CMakeLists.txt 182 字节
Newer Older
1 2 3 4
# XPU
IF(WITH_XPU)
  add_subdirectory(xpu)
ENDIF()
5 6 7
IF(WITH_GPU OR WITH_ROCM)
  add_subdirectory(gpu)
ENDIF()
8 9 10 11 12

# NPU
IF(WITH_ASCEND OR WITH_ASCEND_CL)
  add_subdirectory(npu)
ENDIF()