Skip to content

Commit

Permalink
Fix map assign issue in CI test (#5854)
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen authored Jun 19, 2020
1 parent 3c733b8 commit aaed048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tir/transforms/bf16_legalize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ class BF16LowerRewriter : StmtExprMutator {
}
}
if (buffer_remap.size() != 0) {
op->buffer_map.assign(changes.begin(), changes.end());
op->buffer_map = Map<Var, Buffer>(changes.begin(), changes.end());
}
}
};
Expand Down

0 comments on commit aaed048

Please sign in to comment.