File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -281,11 +281,11 @@ def __call__(self, graph: torch.fx.Graph):
281
281
self .dump_graph (graph , "before_fusion" )
282
282
283
283
count = self .patterns .apply (graph )
284
- logger .info ("Replaced %s patterns" , count )
284
+ logger .debug ("Replaced %s patterns" , count )
285
285
self .dump_graph (graph , "after_pattern_match" )
286
286
287
287
# Manually process multi-output matches (and run DCE)
288
288
self .process_matches (graph )
289
- logger .info ("Post-processed %s matches" , len (self .matches ))
289
+ logger .debug ("Post-processed %s matches" , len (self .matches ))
290
290
self .dump_graph (graph , "after_fusion" )
291
291
self .matches .clear ()
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def __call__(self, graph: torch.fx.Graph):
53
53
graph .erase_node (node )
54
54
count += 1
55
55
56
- logger .info ("Removed %s no-op reshapes" , count )
56
+ logger .debug ("Removed %s no-op reshapes" , count )
57
57
58
58
self .dump_graph (graph , "after_reshapes" )
59
59
You can’t perform that action at this time.
0 commit comments