CMakeLists.txt 654 字节
Newer Older
1
if(WITH_GPU)
2
  cc_library(convert_utils SRCS convert_utils.cc DEPS data_type place gpu_info python)
3
elseif(WITH_ROCM)
4
  cc_library(convert_utils SRCS convert_utils.cc DEPS data_type place gpu_info python)
5
else()
6
  cc_library(convert_utils SRCS convert_utils.cc DEPS data_type place python)
7 8 9 10 11 12
endif()

cc_library(kernel_factory SRCS kernel_factory.cc DEPS enforce)
cc_library(kernel_context SRCS kernel_context.cc DEPS enforce device_context)

cc_library(tensor_base SRCS tensor_base.cc allocator.cc storage.cc DEPS enforce)
13 14
cc_library(tensor_meta SRCS tensor_meta.cc DEPS enforce)
cc_library(dense_tensor SRCS dense_tensor.cc DEPS tensor_meta tensor_base)