CMakeLists.txt 234 字节
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()
J
jianghaicheng 已提交
13 14 15 16 17

# IPU
IF(WITH_IPU)
  add_subdirectory(ipu)
ENDIF()