CMakeLists.txt 421 字节
Newer Older
1 2 3 4 5 6
if(WITH_PYTHON)
cc_library(paddle_pybind SHARED
    SRCS pybind.cc
    DEPS pybind python backward
    sgd_op
    gather_op
Z
zchen0211 已提交
7
    scatter_op
8 9 10 11 12 13 14 15 16 17 18
    add_op
    mul_op
    rowwise_add_op
    sigmoid_op
    softmax_op
    mean_op
    cross_entropy_op
    recurrent_op
    uniform_random_op
    gaussian_random_op
    fill_zeros_like_op
D
dangqingqing 已提交
19
    lookup_table_op
20
    scale_op
21 22
    minus_op
    squared_l2_distance_op)
23
endif(WITH_PYTHON)