Skip to content

Commit

Permalink
fixing the logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jjsjann123 committed Nov 4, 2024
1 parent 2f43e0d commit d4f7680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/scheduler/vectorize_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ std::vector<IterDomain*> ContiguousInnerDimensionsMapper::projectId(
}

auto pos = std::distance(frontier.begin(), it);
if (resize_in_pad_.count(resize_op) == 0) {
if (resize_in_pad_.count(resize_op) != 0) {
// project to frontier.
frontier[pos] = id_to;
// clear left of resize
Expand Down

0 comments on commit d4f7680

Please sign in to comment.