aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tf2xla/kernels/matmul_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/tf2xla/kernels/matmul_op.cc')
-rw-r--r--tensorflow/compiler/tf2xla/kernels/matmul_op.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/tensorflow/compiler/tf2xla/kernels/matmul_op.cc b/tensorflow/compiler/tf2xla/kernels/matmul_op.cc
index 844080b8cf..aa45b02551 100644
--- a/tensorflow/compiler/tf2xla/kernels/matmul_op.cc
+++ b/tensorflow/compiler/tf2xla/kernels/matmul_op.cc
@@ -54,10 +54,14 @@ class MatMulOp : public XlaOpKernel {
const TensorShape b_shape = ctx->InputShape(1);
// Check that the dimensions of the two matrices are valid.
- OP_REQUIRES(ctx, TensorShapeUtils::IsMatrix(a_shape),
- errors::InvalidArgument("In[0] is not a matrix"));
- OP_REQUIRES(ctx, TensorShapeUtils::IsMatrix(b_shape),
- errors::InvalidArgument("In[1] is not a matrix"));
+ OP_REQUIRES(
+ ctx, TensorShapeUtils::IsMatrix(a_shape),
+ errors::InvalidArgument("In[0] is not a matrix. Instead it has shape ",
+ a_shape.DebugString()));
+ OP_REQUIRES(
+ ctx, TensorShapeUtils::IsMatrix(b_shape),
+ errors::InvalidArgument("In[1] is not a matrix. Instead it has shape ",
+ b_shape.DebugString()));
int first_index = transpose_a_ ? 0 : 1;
int second_index = transpose_b_ ? 1 : 0;