CMakeLists.txt 1.6 KB
Newer Older
Q
qiaolongfei 已提交
1
# ddim lib
Q
qijun 已提交
2
cc_library(ddim SRCS ddim.cc DEPS eigen3)
3 4
cc_test(ddim_test SRCS ddim_test.cc DEPS ddim)
nv_test(dim_test SRCS dim_test.cu DEPS ddim)
L
liaogang 已提交
5

L
liaogang 已提交
6
cc_library(tensor SRCS tensor.cc DEPS ddim place paddle_memory device_context)
Y
Yu Yang 已提交
7
cc_test(tensor_test SRCS tensor_test.cc DEPS tensor)
Y
Update  
Yi Wang 已提交
8
cc_test(eigen_test SRCS eigen_test.cc DEPS tensor)
L
liaogang 已提交
9

Y
Yi Wang 已提交
10
cc_test(variable_test SRCS variable_test.cc)
11
cc_test(scope_test SRCS scope_test.cc)
L
liaogang 已提交
12

Y
Yu Yang 已提交
13
proto_library(attr_type SRCS attr_type.proto)
Y
Yu Yang 已提交
14
proto_library(op_proto SRCS op_proto.proto DEPS attr_type)
Q
Qiao Longfei 已提交
15
proto_library(op_desc SRCS op_desc.proto DEPS attr_type)
L
liaogang 已提交
16
cc_test(op_proto_test SRCS op_proto_test.cc DEPS op_proto protobuf)
Q
Qiao Longfei 已提交
17
cc_test(op_desc_test SRCS op_desc_test.cc DEPS op_desc protobuf)
Q
Qiao Longfei 已提交
18

Y
Yu Yang 已提交
19
cc_library(operator SRCS operator.cc DEPS op_desc device_context tensor)
Y
Yu Yang 已提交
20
cc_test(operator_test SRCS operator_test.cc DEPS operator op_registry)
Q
Qiao Longfei 已提交
21

F
fengjiayi 已提交
22 23
cc_library(grad_op_builder SRCS grad_op_builder.cc DEPS op_proto operator)
cc_library(op_registry SRCS op_registry.cc DEPS op_desc grad_op_builder)
F
fengjiayi 已提交
24
cc_test(op_registry_test SRCS op_registry_test.cc DEPS op_registry)
F
fengjiayi 已提交
25
cc_test(grad_op_builder_test SRCS grad_op_builder_test.cc DEPS grad_op_builder op_registry add_op)
26

27 28 29 30
py_proto_compile(framework_py_proto SRCS attr_type.proto op_proto.proto op_desc.proto)
# Generate an empty __init__.py to make framework_py_proto as a valid python module.
add_custom_target(framework_py_proto_init ALL COMMAND ${CMAKE_COMMAND} -E touch __init__.py)
add_dependencies(framework_py_proto framework_py_proto_init)
31

Y
Yu Yang 已提交
32
cc_library(net SRCS net.cc DEPS op_registry)
D
dongzhihong 已提交
33
cc_test(net_op_test SRCS net_op_test.cc DEPS net add_op mul_op sigmoid_op softmax_op fc_op)