From bde12f810ca2f30eceb654ecf4ecbc12997bce23 Mon Sep 17 00:00:00 2001 From: Chris Sullivan Date: Wed, 24 Feb 2021 09:35:43 -0800 Subject: [PATCH] Remove debug prints. --- src/driver/driver_api.cc | 2 -- src/relay/backend/graph_runtime_codegen.cc | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/driver/driver_api.cc b/src/driver/driver_api.cc index bd6a1dd8e0ab..687b346a90ca 100644 --- a/src/driver/driver_api.cc +++ b/src/driver/driver_api.cc @@ -274,7 +274,6 @@ runtime::Module build(const Map& inputs, const Target& target_ target_host_val = DefaultTargetHost(target_host_val); } - std::cout << "All Modules Before: " << inputs << std::endl; IRModule mhost_all = IRModule(Map()); ICHECK(mhost_all.defined()) << "The host module must be defined"; @@ -297,7 +296,6 @@ runtime::Module build(const Map& inputs, const Target& target_ } } - std::cout << "All Modules: " << mhost_all << std::endl; runtime::Module mhost = codegen::Build(mhost_all, target_host_val); // Import all modules diff --git a/src/relay/backend/graph_runtime_codegen.cc b/src/relay/backend/graph_runtime_codegen.cc index 416540db2286..3785338ab9c6 100644 --- a/src/relay/backend/graph_runtime_codegen.cc +++ b/src/relay/backend/graph_runtime_codegen.cc @@ -228,7 +228,6 @@ class GraphRuntimeCodegen : public backend::MemoizedExprTranslator(main_module->Lookup("main")); - std::cout << "MainFunction: " << PrettyPrint(main_func) << std::endl; // Now that we have lowered all operators to TIR code, we can proceed with compilation. storage_device_map_ = GraphPlanMemory(main_func); @@ -253,7 +252,6 @@ class GraphRuntimeCodegen : public backend::MemoizedExprTranslator