aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/strided_slice_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/util/strided_slice_op.cc')
-rw-r--r--tensorflow/core/util/strided_slice_op.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/util/strided_slice_op.cc b/tensorflow/core/util/strided_slice_op.cc
index aca60b942d..ad8a44a518 100644
--- a/tensorflow/core/util/strided_slice_op.cc
+++ b/tensorflow/core/util/strided_slice_op.cc
@@ -326,7 +326,7 @@ Status ValidateStridedSliceOp(
// Even if we don't have values for begin or end, we do know that this
// dimension covers the whole interval. If we have shape information for
// this dimension, that tells us the interval length.
- if (dim_i > 0) {
+ if (dim_i >= 0) {
if (stride_i < 0) {
interval_length = -dim_i;
} else {