CMakeLists.txt 1.4 KB
Newer Older
1
add_subdirectory(function)
2 3 4 5 6 7 8
proto_library(paddle_jit_property_proto SRCS property.proto)

cc_library(
  jit_property
  SRCS property.cc
  DEPS paddle_jit_property_proto tensor)

9 10 11
cc_library(
  jit_serializer
  SRCS serializer.cc
12
  DEPS lod_tensor device_context jit_property)
13

14
cc_library(
15 16 17 18 19 20 21 22
  jit_function_utils
  SRCS function_utils.cc
  DEPS lod_tensor scope proto_desc)

cc_library(
  jit_serializer_utils
  SRCS serializer_utils.cc
  DEPS proto_desc)
23 24 25 26 27 28

cc_library(
  jit_compilation_unit
  SRCS compilation_unit.cc
  DEPS proto_desc executor parallel_executor executor_cache)

29 30 31 32 33
cc_library(
  jit_function_schema
  SRCS function_schema.cc
  DEPS jit_function_utils)

34 35 36
cc_library(
  jit_layer
  SRCS layer.cc
37 38 39 40 41 42 43
  DEPS jit_serializer
       jit_function_utils
       jit_serializer_utils
       jit_compilation_unit
       jit_function_schema
       jit_executor_function
       jit_pe_function)
44

T
tianshuo78520a 已提交
45
if(WITH_TESTING AND NOT WIN32)
46 47
  add_custom_target(
    jit_download_program
48 49 50 51
    COMMAND
      wget -nc -q
      https://paddle-ci.gz.bcebos.com/dy2st/multi_program_load_with_property.tar.gz
    COMMAND tar zxf multi_program_load_with_property.tar.gz)
52 53
  set(JIT_DEPS
      phi
54
      phi_api
55 56 57 58 59 60 61
      elementwise_add_op
      matmul_v2_op
      activation_op
      reduce_mean_op
      feed_op
      fetch_op
      scale_op
62
      jit_layer)
63 64 65 66 67 68
  cc_test(
    layer_test
    SRCS layer_test.cc
    DEPS ${JIT_DEPS})
  add_dependencies(layer_test jit_download_program)
endif()