CMakeLists.txt 380 字节
Newer Older
W
Wu Yi 已提交
1
include(operators)
Q
qingqing01 已提交
2
register_operators(EXCLUDES fusion_transpose_flatten_concat_op fusion_conv_inception_op)
3 4
if (WITH_GPU)
  op_library(fusion_transpose_flatten_concat_op)
Q
qingqing01 已提交
5
  op_library(fusion_conv_inception_op)
6
  file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(fusion_transpose_flatten_concat);\n")
Q
qingqing01 已提交
7
  file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(conv2d_inception_fusion);\n")
8
endif()