aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Michael Kuperstein <mkuper@google.com>2018-06-13 16:33:48 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-13 16:36:36 -0700
commita6cccdcc5eb6e0a7915856467c97ac4acc8f624a (patch)
tree280c77ba8438d3dfccccc032b0d072357aafbeba
parent11e1a45229b9f758a143b5fcf121ba689eca74e2 (diff)
[XLA] Add missing space in evaluator error message.
PiperOrigin-RevId: 200474564
-rw-r--r--tensorflow/compiler/xla/service/hlo_evaluator_typed_visitor.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_evaluator_typed_visitor.h b/tensorflow/compiler/xla/service/hlo_evaluator_typed_visitor.h
index e01ce19d04..bc7340aa03 100644
--- a/tensorflow/compiler/xla/service/hlo_evaluator_typed_visitor.h
+++ b/tensorflow/compiler/xla/service/hlo_evaluator_typed_visitor.h
@@ -1116,7 +1116,7 @@ class HloEvaluatorTypedVisitor : public DfsHloVisitorWithDefault {
/*padding_config=*/pad->padding_config()));
CHECK(ShapeUtil::Compatible(pad->shape(), inferred_return_shape))
<< "return shape is set to: " << ShapeUtil::HumanString(pad->shape())
- << "but is inferred to be: "
+ << " but is inferred to be: "
<< ShapeUtil::HumanString(inferred_return_shape);
// Create new HLO of padded shape with padding value.
@@ -1182,7 +1182,7 @@ class HloEvaluatorTypedVisitor : public DfsHloVisitorWithDefault {
dynamic_slice->dynamic_slice_sizes()));
TF_RET_CHECK(ShapeUtil::Compatible(result_shape, inferred_return_shape))
<< "return shape is set to: " << ShapeUtil::HumanString(result_shape)
- << "but is inferred to be: "
+ << " but is inferred to be: "
<< ShapeUtil::HumanString(inferred_return_shape);
TF_RET_CHECK(
primitive_util::IsIntegralType(start_indices->shape().element_type()));
@@ -1237,7 +1237,7 @@ class HloEvaluatorTypedVisitor : public DfsHloVisitorWithDefault {
operand->shape(), update->shape(), start_indices->shape()));
TF_RET_CHECK(ShapeUtil::Compatible(result_shape, inferred_return_shape))
<< "return shape is set to: " << ShapeUtil::HumanString(result_shape)
- << "but is inferred to be: "
+ << " but is inferred to be: "
<< ShapeUtil::HumanString(inferred_return_shape);
TF_RET_CHECK(
primitive_util::IsIntegralType(start_indices->shape().element_type()));
@@ -1393,7 +1393,7 @@ class HloEvaluatorTypedVisitor : public DfsHloVisitorWithDefault {
/*to_apply=*/function->ComputeProgramShape()));
TF_RET_CHECK(ShapeUtil::Compatible(reduce->shape(), inferred_return_shape))
<< "return shape is set to: " << ShapeUtil::HumanString(reduce->shape())
- << "but is inferred to be: "
+ << " but is inferred to be: "
<< ShapeUtil::HumanString(inferred_return_shape);
const Literal& arg_literal = parent_->GetEvaluatedLiteralFor(arg);
@@ -1613,7 +1613,7 @@ class HloEvaluatorTypedVisitor : public DfsHloVisitorWithDefault {
ShapeUtil::Compatible(reduce_window->shape(), inferred_return_shape))
<< "return shape is set to: "
<< ShapeUtil::HumanStringWithLayout(reduce_window->shape())
- << "but is inferred to be: "
+ << " but is inferred to be: "
<< ShapeUtil::HumanStringWithLayout(inferred_return_shape);
const Literal& operand_literal =