Skip to content

Commit

Permalink
[tflite2circle] Revise to use new mio (#11449)
Browse files Browse the repository at this point in the history
This will revise to use new mio-circle06, mio-tflite2121.

ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
  • Loading branch information
seanshpark authored Sep 2, 2023
1 parent bd6d847 commit abdcab6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions compiler/tflite2circle/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
nnas_include(TargetRequire)

unset(REQUIRED_TARGETS)
list(APPEND REQUIRED_TARGETS mio_tflite280)
list(APPEND REQUIRED_TARGETS mio_circle05)
list(APPEND REQUIRED_TARGETS mio_tflite2121)
list(APPEND REQUIRED_TARGETS mio_circle06)
TargetRequire_Return(${REQUIRED_TARGETS})

set(DRIVER "driver/Driver.cpp")
Expand All @@ -13,9 +13,9 @@ target_include_directories(tflite2circle PRIVATE src)
target_link_libraries(tflite2circle arser)
target_link_libraries(tflite2circle foder)
target_link_libraries(tflite2circle safemain)
target_link_libraries(tflite2circle mio_tflite280)
target_link_libraries(tflite2circle mio_tflite280_helper)
target_link_libraries(tflite2circle mio_circle05)
target_link_libraries(tflite2circle mio_tflite2121)
target_link_libraries(tflite2circle mio_tflite2121_helper)
target_link_libraries(tflite2circle mio_circle06)
target_link_libraries(tflite2circle vconone)
target_link_libraries(tflite2circle nncc_coverage)

Expand Down
4 changes: 2 additions & 2 deletions compiler/tflite2circle/requires.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require("arser")
require("foder")
require("mio-tflite280")
require("mio-circle05")
require("mio-tflite2121")
require("mio-circle06")
require("safemain")
require("vconone")
2 changes: 1 addition & 1 deletion compiler/tflite2circle/src/CircleModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "CircleModel.h"
#include "DataLookup.h"

#include <mio_tflite280/Helper.h>
#include <mio_tflite2121/Helper.h>

namespace tflite2circle
{
Expand Down

0 comments on commit abdcab6

Please sign in to comment.