[exo-tflite] Put "exo::" prefix (to easily distinguish log from exo) (#7258)
author윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Fri, 6 Sep 2019 10:25:20 +0000 (19:25 +0900)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Fri, 6 Sep 2019 10:25:20 +0000 (19:25 +0900)
It is difficult to tell which (moco? exo-tflite?) prints log. So, "exo::" prefix is added for exo-tflite.

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
compiler/exo-tflite/src/Conversion/ReluConverter.h
compiler/exo-tflite/src/Conversion/ShapeInferencePass.h
compiler/exo-tflite/src/Conversion/TypeInferencePass.h
compiler/exo-tflite/src/ProgressReporter.cpp

index 3fd1d0f..e1e82ae 100644 (file)
@@ -30,7 +30,7 @@ namespace exo
 class ReluConverter : public CanonicalNodeConverter<loco::ReLU>
 {
 public:
-  const char *name(void) const final { return "ReluConverter"; }
+  const char *name(void) const final { return "exo::ReluConverter"; }
 
 public:
   bool convert(loco::ReLU *origin) final;
index a05ea75..4db9a43 100644 (file)
@@ -29,7 +29,7 @@ namespace exo
 class ShapeInferencePass : public logo::Pass
 {
 public:
-  virtual const char *name(void) const { return "ShapeInferencePass"; }
+  virtual const char *name(void) const { return "exo::ShapeInferencePass"; }
 
 public:
   bool run(loco::Graph *graph);
index ecb1ab4..3e0b710 100644 (file)
@@ -30,7 +30,7 @@ namespace exo
 class TypeInferencePass : public logo::Pass
 {
 public:
-  virtual const char *name(void) const { return "TypeInferencePass"; }
+  virtual const char *name(void) const { return "exo::TypeInferencePass"; }
 
 public:
   bool run(loco::Graph *graph);
index bfdfb77..ff919da 100644 (file)
@@ -52,7 +52,7 @@ void ProgressReporter::notify(const logo::PhaseEventInfo<logo::PhaseEvent::Phase
   LOGGER(prime);
 
   INFO(prime) << "==============================================================";
-  INFO(prime) << "PhaseRunner<" << to_str(strategy()) << ">";
+  INFO(prime) << "exo::PhaseRunner<" << to_str(strategy()) << ">";
   INFO(prime) << "Initial graph";
   INFO(prime) << fmt(graph());
 }
@@ -61,7 +61,7 @@ void ProgressReporter::notify(const logo::PhaseEventInfo<logo::PhaseEvent::Phase
 {
   LOGGER(prime);
 
-  INFO(prime) << "PhaseRunner<" << to_str(strategy()) << "> - done";
+  INFO(prime) << "exo::PhaseRunner<" << to_str(strategy()) << "> - done";
 }
 
 void ProgressReporter::notify(const logo::PhaseEventInfo<logo::PhaseEvent::PassBegin> *info)