CMakeLists.txt 293 字节
Newer Older
1 2 3 4 5
# GPU
IF(WITH_GPU OR WITH_ROCM)
  add_subdirectory(gpu)
ENDIF()

6 7 8 9
# XPU
IF(WITH_XPU)
  add_subdirectory(xpu)
ENDIF()
10 11 12 13 14

# NPU
IF(WITH_ASCEND OR WITH_ASCEND_CL)
  add_subdirectory(npu)
ENDIF()
J
jianghaicheng 已提交
15 16 17 18 19

# IPU
IF(WITH_IPU)
  add_subdirectory(ipu)
ENDIF()
F
fwenguang 已提交
20 21 22 23 24

# MLU
IF(WITH_MLU)
  add_subdirectory(mlu)
ENDIF()