Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
test(fusion): fix fusion_merge_pass according to new fusion rule
Browse files Browse the repository at this point in the history
  • Loading branch information
6clc committed May 8, 2023
1 parent 7e752a4 commit b5c7bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cinn/hlir/pass/fusion_merge_pass_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ TEST(FusionMergePass, Reduce_Test_2) {

auto graph = std::make_shared<hlir::framework::Graph>(program, target);
hlir::framework::ApplyPass(graph.get(), "OpFusionPass");
CHECK_EQ(graph->fusion_groups.size(), 4);
CHECK_EQ(graph->fusion_groups.size(), 3);
hlir::framework::ApplyPass(graph.get(), "FusionMergePass");
CHECK_EQ(graph->fusion_groups.size(), 2);
}
Expand Down

0 comments on commit b5c7bbf

Please sign in to comment.