Unverified Commit 2885ba0e authored by Tyler Michael Smith's avatar Tyler Michael Smith Committed by GitHub
Browse files

[Misc] Change RedundantReshapesPass and FusionPass logging from info to debug (#10308)


Signed-off-by: default avatarTyler Michael Smith <tyler@neuralmagic.com>
parent bf2ddc66
......@@ -281,11 +281,11 @@ class FusionPass(InductorPass):
self.dump_graph(graph, "before_fusion")
count = self.patterns.apply(graph)
logger.info("Replaced %s patterns", count)
logger.debug("Replaced %s patterns", count)
self.dump_graph(graph, "after_pattern_match")
# Manually process multi-output matches (and run DCE)
self.process_matches(graph)
logger.info("Post-processed %s matches", len(self.matches))
logger.debug("Post-processed %s matches", len(self.matches))
self.dump_graph(graph, "after_fusion")
self.matches.clear()
......@@ -53,7 +53,7 @@ class RedundantReshapesPass(InductorPass):
graph.erase_node(node)
count += 1
logger.info("Removed %s no-op reshapes", count)
logger.debug("Removed %s no-op reshapes", count)
self.dump_graph(graph, "after_reshapes")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment