You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

package_wrapper.cmake 1.1 kB

4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627
  1. include_directories(${LITE_DIR}/micro/coder/operator_library)
  2. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
  3. set(WRAPPER_DIR ${LITE_DIR}/micro/coder/operator_library/wrapper/)
  4. set(RUNTIME_SRC
  5. ${LITE_DIR}/src/runtime/thread_pool.c
  6. )
  7. set(WRAPPER_SRC
  8. ${WRAPPER_DIR}/base/common_wrapper.c
  9. ${WRAPPER_DIR}/base/detection_post_process_base_wrapper.c
  10. ${WRAPPER_DIR}/base/optimize_handler_wrapper.c
  11. ${WRAPPER_DIR}/fp32/matmul_fp32_wrapper.c
  12. ${WRAPPER_DIR}/int8/matmul_int8_wrapper.c
  13. ${WRAPPER_DIR}/int8/add_int8_wrapper.c
  14. ${WRAPPER_DIR}/int8/concat_int8_wrapper.c
  15. ${WRAPPER_DIR}/int8/convolution_int8_wrapper.c
  16. ${WRAPPER_DIR}/int8/conv_init_int8_wrapper.c
  17. ${WRAPPER_DIR}/int8/conv1x1_init_int8_wrapper.c
  18. ${WRAPPER_DIR}/int8/conv1x1_run_int8_wrapper.c
  19. ${WRAPPER_DIR}/int8/convolution_depthwise_int8_wrapper.c
  20. ${WRAPPER_DIR}/int8/resize_int8_wrapper.c
  21. ${WRAPPER_DIR}/int8/slice_int8_wrapper.c
  22. ${WRAPPER_DIR}/int8/batchnorm_int8_wrapper.c
  23. )
  24. list(APPEND FILE_SET ${WRAPPER_SRC} ${RUNTIME_SRC})