Skip to content

Commit

Permalink
fix bug of strided_slice (#43388)
Browse files Browse the repository at this point in the history
* fix stride_slice bug

* fix bug
  • Loading branch information
zyfncg authored Jun 13, 2022
1 parent ee60567 commit abc5d0c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions paddle/phi/kernels/funcs/strided_slice.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,14 @@ static void StridedSliceOutDims(const std::vector<int64_t>& starts,

if (start_index < 0) {
start_index = start_index + axis_size;
start_index = std::max<int64_t>(start_index, 0);
}
if (end_index < 0) {
if (!(end_index == -1 && stride_index < 0)) { // skip None stop condition
end_index = end_index + axis_size;
if (end_index < 0) {
end_index = 0;
}
}
}

Expand Down

0 comments on commit abc5d0c

Please sign in to comment.