Skip to content

Commit

Permalink
Remove debug graph output
Browse files Browse the repository at this point in the history
Signed-off-by: luka <[email protected]>
  • Loading branch information
ProExpertProg committed Dec 4, 2024
1 parent 5d0cbaf commit 7901c70
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/compile/test_fusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,8 @@ def test_fusion_rmsnorm_quant(dtype, hidden_size, num_tokens, eps, static):
torch.manual_seed(1)

# Reshape pass is needed for the fusion pass to work
config = CompilationConfig.PassConfig(
enable_fusion=True,
enable_reshape=True,
dump_graph_stages=["before_fusion", "after_fusion"])
config = CompilationConfig.PassConfig(enable_fusion=True,
enable_reshape=True)
reshape_pass = RedundantReshapesPass(config)
fusion_pass = FusionPass.instance(config)

Expand Down

0 comments on commit 7901c70

Please sign in to comment.