[exo-tflite] Fixed how not-yet-implemnented op is printed (#6905)
author윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Tue, 27 Aug 2019 01:18:32 +0000 (10:18 +0900)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Tue, 27 Aug 2019 01:18:32 +0000 (10:18 +0900)
Change " " to "_" since " " may look weird.

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
compiler/exo-tflite/src/TFLFormattedGraph.cpp

index 13944f8..d6b449d 100644 (file)
@@ -42,7 +42,7 @@ protected:
 #define TFL_NODE(OPCODE, CLASS)                                    \
   virtual bool summary(const CLASS *, locop::NodeSummary &s) const \
   {                                                                \
-    s.opname("NYI " #CLASS);                                       \
+    s.opname("NYI_" #CLASS);                                       \
     s.state(locop::NodeSummary::State::PartiallyKnown);            \
     return true;                                                   \
   }