CMakeLists.txt 916 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
cc_test(
  test_mkldnn_op_inplace
  SRCS test_mkldnn_op_inplace.cc
  DEPS op_registry
       elementwise_add_op
       activation_op
       softmax
       scope
       device_context
       enforce
11 12
       executor
       generated_static_op)
13 14 15 16 17 18 19 20 21 22 23 24

set(TEST_MKLDNN_CACHING_DEPS
    op_registry
    elementwise_mul_op
    elementwise_add_op
    activation_op
    conv_op
    im2col
    vol2col
    softmax
    scope
    device_context
25 26 27
    enforce
    generated_static_op)

28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
if(WITH_GPU OR WITH_ROCM)
  set(TEST_MKLDNN_CACHING_DEPS ${TEST_MKLDNN_CACHING_DEPS} depthwise_conv)
endif()
cc_test(
  test_mkldnn_caching
  SRCS test_mkldnn_caching.cc
  DEPS ${TEST_MKLDNN_CACHING_DEPS})

cc_test_old(
  test_mkldnn_op_nhwc
  SRCS
  test_mkldnn_op_nhwc.cc
  DEPS
  op_registry
  pool_op
  shape_op
  crop_op
  activation_op
  generated_op
  pooling
  transpose_op
  fused_transpose_op
  scope
  device_context
  enforce
  executor)