CMakeLists.txt 678 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
cc_library(
  phi_c_data_type
  SRCS c_data_type.cc
  DEPS dense_tensor)

cc_library(
  phi_c_device_context
  SRCS c_device_context.cc
  DEPS phi_context)

cc_library(
  phi_c_int_array
  SRCS c_int_array.cc
  DEPS int_array)

cc_library(
  phi_c_kernel_context
  SRCS c_kernel_context.cc
  DEPS kernel_context)

cc_library(
  phi_c_kernel_factory
  SRCS c_kernel_factory.cc
  DEPS kernel_factory)

cc_library(
  phi_c_kernel_registry
  SRCS c_kernel_registry.cc
  DEPS dense_tensor)

cc_library(
  phi_c_place
  SRCS c_place.cc
  DEPS phi_place)

cc_library(
  phi_c_scalar
  SRCS c_scalar.cc
  DEPS scalar)

cc_library(
  phi_c_tensor
  SRCS c_tensor.cc
  DEPS dense_tensor)