CMakeLists.txt 1.4 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6
py_test(test_net SRCS test_net.py)

py_test(test_scope SRCS test_scope.py)

py_test(test_tensor SRCS test_tensor.py)
py_test(test_mul_op SRCS test_mul_op.py)
X
Xinghai Sun 已提交
7
py_test(test_cos_sim_op SRCS test_cos_sim_op.py)
L
liaogang 已提交
8 9 10 11 12 13 14 15

py_test(test_mean_op SRCS test_mean_op.py)

py_test(test_protobuf SRCS test_protobuf.py)

py_test(test_add_two_op SRCS test_add_two_op.py)
py_test(test_sigmoid_op SRCS test_sigmoid_op.py)
py_test(test_softmax_op SRCS test_softmax_op.py)
16
py_test(test_cross_entropy_op SRCS test_cross_entropy_op.py)
Z
zchen0211 已提交
17
py_test(test_gather_op SRCS test_gather_op.py)
Z
zchen0211 已提交
18
py_test(test_scatter_op SRCS test_scatter_op.py)
19
py_test(test_fill_zeros_like_op SRCS test_fill_zeros_like_op.py)
L
liaogang 已提交
20 21 22 23 24 25

py_test(gradient_checker SRCS gradient_checker.py)

py_test(test_rowwise_add_op SRCS test_rowwise_add_op.py)

py_test(test_default_scope_funcs SRCS test_default_scope_funcs.py)
26

Y
Yu Yang 已提交
27
py_test(test_operator SRCS test_operator.py)
Q
qijun 已提交
28
py_test(test_gaussian_random_op SRCS test_gaussian_random_op.py)
29
py_test(test_uniform_random_op SRCS test_uniform_random_op.py)
S
superjom 已提交
30
py_test(test_recurrent_op SRCS test_recurrent_op.py)
Y
Yu Yang 已提交
31
py_test(test_sgd_op SRCS test_sgd_op.py)
32
py_test(test_gradient_checker SRCS test_gradient_checker.py)
33
py_test(test_lookup_table SRCS test_lookup_table.py)
Y
Yu Yang 已提交
34
py_test(test_scale_and_identity_op SRCS test_scale_and_identity_op.py)
Q
qiaolongfei 已提交
35
py_test(mnist SRCS mnist.py)
36
py_test(test_squared_l2_distance_op SRCS test_squared_l2_distance_op.py)