Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HotFix] Op is not bound to any variables #12401

Merged
merged 3 commits into from
Aug 16, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/tir/transforms/storage_rewrite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,9 @@ class VectorTypeRewriter : public StmtExprMutator {

Stmt VisitStmt_(const LetStmtNode* op) final {
auto it = rewrite_map_.find(op->var.get());
if (it == rewrite_map_.end()) {
PrimExpr value = this->VisitExpr(op->value);
Stmt body = this->VisitStmt(op->body);
if (value.same_as(op->value) && body.same_as(op->body) && it == rewrite_map_.end()) {
echuraev marked this conversation as resolved.
Show resolved Hide resolved
return GetRef<Stmt>(op);
}
return LetStmt(it->second.new_buffer_var, op->value, op->body);
Expand Down