aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/argmax_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/argmax_op.cc')
-rw-r--r--tensorflow/core/kernels/argmax_op.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/tensorflow/core/kernels/argmax_op.cc b/tensorflow/core/kernels/argmax_op.cc
index 49cd997fed..c731b64993 100644
--- a/tensorflow/core/kernels/argmax_op.cc
+++ b/tensorflow/core/kernels/argmax_op.cc
@@ -59,7 +59,7 @@ class ArgOp : public OpKernel {
int axis = dim < 0 ? dim + input_dims : dim;
- OP_REQUIRES(context, axis >= 0 && axis < input_dims,
+ OP_REQUIRES(context, FastBoundsCheck(axis, input_dims),
errors::InvalidArgument("Expected dimension in the range [",
-input_dims, ", ", input_dims,
"), but got ", dim));
@@ -76,6 +76,10 @@ class ArgOp : public OpKernel {
Tensor* output = nullptr;
OP_REQUIRES_OK(context, context->allocate_output(0, output_shape, &output));
+ if (output_shape.num_elements() == 0) {
+ return;
+ }
+
#define HANDLE_DIM(NDIM) \
case NDIM: \
ArgFunctor::Reduce##NDIM(context->eigen_device<Device>(), \