Skip to content

Commit

Permalink
Nit.
Browse files Browse the repository at this point in the history
  • Loading branch information
zxybazh committed Jan 25, 2022
1 parent 7c24100 commit f8fea37
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/meta_schedule/space_generator/post_order_apply.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ class BlockCollector : public tir::StmtVisitor {
blocks_to_collect_.clear();
VisitStmt(func->body);
for (const String& block_name : blocks_to_collect_) {
tir::BlockRV block_rv = sch_->GetBlock(block_name, func_name_);
results_.push_back(block_rv);
results_.push_back(sch_->GetBlock(block_name, func_name_));
}
}
}
Expand Down

0 comments on commit f8fea37

Please sign in to comment.