From 930974af4d8e24958c75286c31dc7e0ee67e75ba Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 9 May 2018 16:58:54 -0700 Subject: [PATCH] Improve error status message in scoped_allocator_ops.cc. PiperOrigin-RevId: 196051520 --- tensorflow/core/kernels/scoped_allocator_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/kernels/scoped_allocator_ops.cc b/tensorflow/core/kernels/scoped_allocator_ops.cc index 1800ee8..1d2fb69 100644 --- a/tensorflow/core/kernels/scoped_allocator_ops.cc +++ b/tensorflow/core/kernels/scoped_allocator_ops.cc @@ -113,7 +113,7 @@ class ScopedAllocatorConcatOp : public OpKernel { OP_REQUIRES(context, backing_tensor.NumElements() >= shape_.num_elements(), errors::InvalidArgument("Backing tensor num elements ", backing_tensor.NumElements(), - " is not equal to expected ", + " is not >= to expected ", shape_.num_elements())); Tensor output(dtype_); if (reshape_) { -- 2.7.4