File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed
Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ function(op_library TARGET)
77 set (OP_LIBRARY ${TARGET} ${OP_LIBRARY} PARENT_SCOPE)
88 set (cc_srcs)
99 set (cu_srcs)
10- set (op_common_deps operator op_registry)
10+ set (op_common_deps operator op_registry math_function )
1111 set (options "" )
1212 set (oneValueArgs "" )
1313 set (multiValueArgs SRCS DEPS)
@@ -51,17 +51,10 @@ endfunction()
5151add_subdirectory (math)
5252
5353set (DEPS_OPS
54- identity_op
55- minus_op
56- mul_op
57- recurrent_op
58- scale_op)
59- op_library(identity_op DEPS scale_op)
60- op_library(minus_op DEPS scale_op)
61- op_library(mul_op DEPS math_function)
54+ recurrent_op)
55+
6256op_library(recurrent_op SRCS recurrent_op.cc rnn/recurrent_op_utils.cc
6357 DEPS framework_proto tensor operator net_op)
64- op_library(scale_op DEPS net_op)
6558
6659list (REMOVE_ITEM GENERAL_OPS ${DEPS_OPS} )
6760foreach (src ${GENERAL_OPS} )
You can’t perform that action at this time.
0 commit comments