Skip to content

Commit

Permalink
fix test_graph
Browse files Browse the repository at this point in the history
  • Loading branch information
kilinchange committed Aug 6, 2024
1 parent 068e8ab commit 6738767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/test_graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace infini
g->print();
EXPECT_EQ(g->getOperators().size(), 1);
EXPECT_EQ(g->getTensors().size(), 3);
EXPECT_EQ(g->getOperators()[0]->getOpType().underlying(), 8);
EXPECT_EQ(g->getOperators()[0]->getOpType().underlying(), 7);
auto op = as<MatmulObj>(g->getOperators()[0]);
EXPECT_EQ(op->getInputs(0)->getGuid(), 2);
EXPECT_EQ(op->getInputs(1)->getGuid(), 3);
Expand Down

0 comments on commit 6738767

Please sign in to comment.