aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/shape_inference.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-05-07 11:05:56 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-07 16:39:29 -0700
commit170634d5a10a94d3bd12cc794c284eafcf47fa54 (patch)
treeb07ae2bc52c3e74911ac218c80904b7ab4117853 /tensorflow/compiler/xla/service/shape_inference.cc
parent9ba26ca0d59989592051fdb5c7a2caabe4f399f3 (diff)
Replaced calls to tensorflow::StringPiece::ToString with std::string conversions.
That is, instances of sp.ToString() are replaced with std::string(sp). This will allow tensorflow::StringPiece::ToString to be removed, which is necessary before it can be replaced with absl::string_view. PiperOrigin-RevId: 195689392
Diffstat (limited to 'tensorflow/compiler/xla/service/shape_inference.cc')
-rw-r--r--tensorflow/compiler/xla/service/shape_inference.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/shape_inference.cc b/tensorflow/compiler/xla/service/shape_inference.cc
index 48b2922e77..c493547d9e 100644
--- a/tensorflow/compiler/xla/service/shape_inference.cc
+++ b/tensorflow/compiler/xla/service/shape_inference.cc
@@ -172,11 +172,11 @@ tensorflow::Status ExpectNotTupleOrOpaque(const Shape& shape,
tensorflow::StringPiece op_type) {
if (ShapeUtil::IsTuple(shape)) {
return InvalidArgument("Expected non-tuple argument for %s, but got %s.",
- op_type.ToString().c_str(),
+ std::string(op_type).c_str(),
ShapeUtil::HumanString(shape).c_str());
} else if (ShapeUtil::IsOpaque(shape)) {
return InvalidArgument("Expected non-opaque argument for %s, but got %s.",
- op_type.ToString().c_str(),
+ std::string(op_type).c_str(),
ShapeUtil::HumanString(shape).c_str());
} else {
return tensorflow::Status::OK();