From ce9c74d88a01d9618073a575aa8355de1579f25a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EA=B9=80=EC=88=98=EC=A7=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 10 Oct 2018 19:23:30 +0900 Subject: [PATCH] [neurun] Remove dot dump env verbose (#3073) This commit removes dot dump env verbose which is not needed anymore. Signed-off-by: sjsujinkim --- runtimes/neurun/src/frontend/wrapper/compilation.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/runtimes/neurun/src/frontend/wrapper/compilation.cc b/runtimes/neurun/src/frontend/wrapper/compilation.cc index 348d449..6b78c92 100644 --- a/runtimes/neurun/src/frontend/wrapper/compilation.cc +++ b/runtimes/neurun/src/frontend/wrapper/compilation.cc @@ -23,7 +23,6 @@ #include "compilation.h" #include "model.h" -#include "logging.h" #include "graph/dumper/Dumper.h" #include "dumper/dot/DotDumper.h" @@ -43,7 +42,6 @@ int ANeuralNetworksCompilation::finish() // dump graph to .dot // TODO : These can be moved to another place. const auto &dotdump_env = ::nnfw::util::EnvVar{"GRAPH_DOT_DUMP"}.asInt(0); - VERBOSE(dot) << "dotdump_env : " << dotdump_env; if (dotdump_env) { neurun::dumper::dot::DotDumper dot_dumper(graph); -- 2.7.4