Skip to content

Commit 2885ba0

Browse files
authored
[Misc] Change RedundantReshapesPass and FusionPass logging from info to debug (#10308)
Signed-off-by: Tyler Michael Smith <[email protected]>
1 parent bf2ddc6 commit 2885ba0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vllm/compilation/fusion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,11 @@ def __call__(self, graph: torch.fx.Graph):
281281
self.dump_graph(graph, "before_fusion")
282282

283283
count = self.patterns.apply(graph)
284-
logger.info("Replaced %s patterns", count)
284+
logger.debug("Replaced %s patterns", count)
285285
self.dump_graph(graph, "after_pattern_match")
286286

287287
# Manually process multi-output matches (and run DCE)
288288
self.process_matches(graph)
289-
logger.info("Post-processed %s matches", len(self.matches))
289+
logger.debug("Post-processed %s matches", len(self.matches))
290290
self.dump_graph(graph, "after_fusion")
291291
self.matches.clear()

vllm/compilation/reshapes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __call__(self, graph: torch.fx.Graph):
5353
graph.erase_node(node)
5454
count += 1
5555

56-
logger.info("Removed %s no-op reshapes", count)
56+
logger.debug("Removed %s no-op reshapes", count)
5757

5858
self.dump_graph(graph, "after_reshapes")
5959

0 commit comments

Comments
 (0)