From 38b8e8a5497ec256764f1b905b510d633e7f9948 Mon Sep 17 00:00:00 2001 From: BiynXu <62832681+BiynXu@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:27:47 +0800 Subject: [PATCH] [Fix] delete excess logs in graph (#56660) --- paddle/cinn/hlir/framework/graph.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/cinn/hlir/framework/graph.cc b/paddle/cinn/hlir/framework/graph.cc index 0e783cdda92..010f8bf9da5 100644 --- a/paddle/cinn/hlir/framework/graph.cc +++ b/paddle/cinn/hlir/framework/graph.cc @@ -309,8 +309,8 @@ void Graph::VisualizeGroupedGraph( } // Dump debug info for each group - LOG(INFO) << "Dump graph debug info to: " - << FLAGS_cinn_fusion_groups_graphviz_dir; + VLOG(4) << "Dump graph debug info to: " + << FLAGS_cinn_fusion_groups_graphviz_dir; const auto& groups = RemoveAccCheckGroups(origin_groups); const auto& group_dots = VisualizeGroups(groups, fetch_var_ids); for (int idx = 0; idx < groups.size(); ++idx) { -- GitLab