From 0329884be3f2767a9df125c2c265e6abeb7675ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=B6=98=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Tue, 16 Oct 2018 10:53:17 +0900 Subject: [PATCH] tflite_benchmark custom op on tizen (#3170) On tizen, custom op is not found when runnning tflite_benchmark. This patch changes link order for tflite_benchmark. cf) This bug is not found on arm-ubuntu(IDK why) Signed-off-by: Chunseok Lee --- tools/tflite_benchmark/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tflite_benchmark/CMakeLists.txt b/tools/tflite_benchmark/CMakeLists.txt index 72ee5d3..8452123 100644 --- a/tools/tflite_benchmark/CMakeLists.txt +++ b/tools/tflite_benchmark/CMakeLists.txt @@ -1,5 +1,5 @@ list(APPEND SOURCES "src/tflite_benchmark.cc") add_executable(tflite_benchmark ${SOURCES}) -target_link_libraries(tflite_benchmark tensorflow-lite ${LIB_PTHREAD} dl nnfw_util nnfw_support_tflite) +target_link_libraries(tflite_benchmark nnfw_support_tflite tensorflow-lite ${LIB_PTHREAD} dl nnfw_util) install(TARGETS tflite_benchmark DESTINATION bin) -- 2.7.4