CMakeLists.txt 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
set(eager_deps
    phi_api
    phi_dygraph_api
    hook_utils
    tensor_utils
    utils
    global_utils
    backward
    phi_tensor
    tracer
    layer
    autograd_meta
    eager_nan_inf_utils
    grad_node_info
    grad_tensor_holder
    accumulation_node
    custom_operator_node)
18

19 20 21 22 23 24 25 26 27 28
set(fluid_deps
    tracer
    layer
    proto_desc
    operator
    op_registry
    variable_helper
    memcpy)
set(generated_deps final_dygraph_function final_dygraph_node dygraph_function
                   dygraph_node)
29

30
if(NOT ((NOT WITH_PYTHON) AND ON_INFER))
31 32
  message("Performing Eager Dygraph Auto Code Generation")
  add_subdirectory(auto_code_generator)
33 34
endif()

35
add_subdirectory(api)
36
add_subdirectory(accumulation)
37
add_subdirectory(custom_operator)
W
wanghuancoder 已提交
38
if(NOT ((NOT WITH_PYTHON) AND ON_INFER))
39 40 41 42 43 44 45 46 47 48
  add_subdirectory(pylayer)
  cc_library(
    grad_tensor_holder
    SRCS grad_tensor_holder.cc
    DEPS grad_node_info gradient_accumulator)
  add_dependencies(grad_tensor_holder eager_final_state_codegen)
  cc_library(
    backward
    SRCS backward.cc
    DEPS grad_tensor_holder utils autograd_meta grad_node_info switch_autotune)
W
wanghuancoder 已提交
49
endif()
50

51 52 53 54 55 56 57 58
cc_library(
  eager_nan_inf_utils
  SRCS nan_inf_utils.cc
  DEPS phi_tensor nan_inf_utils enforce)
cc_library(
  grad_node_info
  SRCS grad_node_info.cc
  DEPS phi_api phi_tensor)
59

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
cc_library(
  autograd_meta
  SRCS autograd_meta.cc
  DEPS phi_api phi_tensor)
cc_library(
  utils
  SRCS utils.cc
  DEPS phi_api
       phi_tensor
       global_utils
       layer
       proto_desc
       operator
       op_registry
       variable_helper
       memcpy
       scale_op
       autograd_meta
       hook_utils)
79

80
if(NOT ((NOT WITH_PYTHON) AND ON_INFER))
81
  add_subdirectory(tests)
82
endif()