unity_build_rule.cmake 947 字节
Newer Older
1 2 3 4 5 6
# This file records the Unity Build compilation rules.
# The source files in a `register_unity_group` called are compiled in a unity
# file.
# Generally, the combination rules in this file do not need to be modified.
# If there are some redefined error in compiling with the source file which
# in combination rule, you can remove the source file from the following rules.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
register_unity_group(
  cc
  elementwise_add_op.cc
  mkldnn/elementwise_add_mkldnn_op.cc
  elementwise_div_op.cc
  elementwise_floordiv_op.cc
  elementwise_max_op.cc
  elementwise_min_op.cc
  elementwise_mod_op.cc
  elementwise_mul_op.cc
  mkldnn/elementwise_mul_mkldnn_op.cc
  elementwise_pow_op.cc
  elementwise_sub_op.cc)
register_unity_group(
  cu
  elementwise_add_op.cu
  elementwise_div_op.cu
  elementwise_floordiv_op.cu
  elementwise_max_op.cu
  elementwise_min_op.cu
  elementwise_mod_op.cu
  elementwise_mul_op.cu
  elementwise_pow_op.cu
  elementwise_sub_op.cu)