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>
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;
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);
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);
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());
}
{
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)