Skip to content

Commit

Permalink
[tfl-inspect] Revise to use mio-tflite2121 (#11446)
Browse files Browse the repository at this point in the history
This will revise to use mio-tflite2121.

ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
  • Loading branch information
seanshpark authored Sep 2, 2023
1 parent a45702e commit 949c041
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions compiler/tfl-inspect/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if(NOT TARGET mio_tflite280)
if(NOT TARGET mio_tflite2121)
return()
endif(NOT TARGET mio_tflite280)
endif(NOT TARGET mio_tflite2121)

set(DRIVER "driver/Driver.cpp")

Expand All @@ -10,6 +10,6 @@ add_executable(tfl-inspect ${DRIVER} ${SOURCES})
target_include_directories(tfl-inspect PRIVATE src)
target_link_libraries(tfl-inspect arser)
target_link_libraries(tfl-inspect foder)
target_link_libraries(tfl-inspect mio_tflite280)
target_link_libraries(tfl-inspect mio_tflite280_helper)
target_link_libraries(tfl-inspect mio_tflite2121)
target_link_libraries(tfl-inspect mio_tflite2121_helper)
target_link_libraries(tfl-inspect safemain)
2 changes: 1 addition & 1 deletion compiler/tfl-inspect/requires.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require("arser")
require("foder")
require("mio-tflite280")
require("mio-tflite2121")
require("safemain")
2 changes: 1 addition & 1 deletion compiler/tfl-inspect/src/Reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "Reader.h"

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

#include <cassert>
#include <sstream>
Expand Down

0 comments on commit 949c041

Please sign in to comment.