Skip to content

Commit

Permalink
Change strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
zhang677 committed May 5, 2022
1 parent ea1cfbe commit 99615cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/tests-scheduling-eval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ IndexStmt scheduleSpGEMMCPU(IndexStmt stmt, bool doPrecompute) {
{result.getType().getShape().getDimension(1)}), taco::dense);
stmt = stmt.precompute(assign.getRhs(), j, j, w);
}
stmt = stmt.assemble(result, AssembleStrategy::Insert, true);
//stmt = stmt.assemble(result, AssembleStrategy::Insert, true);
stmt = stmt.assemble(result, AssembleStrategy::Append, true);
auto qi_stmt = stmt.as<Assemble>().getQueries();
IndexVar qi;
if (isa<Where>(qi_stmt)) {
Expand Down

0 comments on commit 99615cb

Please sign in to comment.