aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-08-24 13:19:52 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-24 13:24:06 -0700
commit94d267dfa6ee106dbf57c42a452925749bbe2f1a (patch)
tree7c85df21e1872b5d9a148c160db794bb5dfc12a6 /tensorflow/compiler
parenta9e0c06a87857f73fdfc375abf7c69a2c28d87bf (diff)
Internal change
PiperOrigin-RevId: 210145594
Diffstat (limited to 'tensorflow/compiler')
-rw-r--r--tensorflow/compiler/xla/packed_literal_reader.cc4
-rw-r--r--tensorflow/compiler/xla/service/hlo_lexer.cc6
-rw-r--r--tensorflow/compiler/xla/service/hlo_tfgraph_builder.cc2
-rw-r--r--tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc2
4 files changed, 7 insertions, 7 deletions
diff --git a/tensorflow/compiler/xla/packed_literal_reader.cc b/tensorflow/compiler/xla/packed_literal_reader.cc
index 55c4a80e29..012df87551 100644
--- a/tensorflow/compiler/xla/packed_literal_reader.cc
+++ b/tensorflow/compiler/xla/packed_literal_reader.cc
@@ -64,7 +64,7 @@ StatusOr<std::unique_ptr<Literal>> PackedLiteralReader::Read(
tensorflow::gtl::ArraySlice<float> field = result->data<float>();
char* data = tensorflow::bit_cast<char*>(field.data());
uint64 bytes = elements * sizeof(float);
- tensorflow::StringPiece sp;
+ tensorflow::StringPiece sp; // non-absl OK
auto s = file_->Read(offset_, bytes, &sp, data);
offset_ += sp.size();
if (!s.ok()) {
@@ -85,7 +85,7 @@ bool PackedLiteralReader::IsExhausted() const {
// Try to read a single byte from offset_. If we can't, we've
// exhausted the data.
char single_byte[1];
- tensorflow::StringPiece sp;
+ tensorflow::StringPiece sp; // non-absl OK
auto s = file_->Read(offset_, sizeof(single_byte), &sp, single_byte);
return !s.ok();
}
diff --git a/tensorflow/compiler/xla/service/hlo_lexer.cc b/tensorflow/compiler/xla/service/hlo_lexer.cc
index a2ad4c8315..0e49d343d6 100644
--- a/tensorflow/compiler/xla/service/hlo_lexer.cc
+++ b/tensorflow/compiler/xla/service/hlo_lexer.cc
@@ -409,9 +409,9 @@ TokKind HloLexer::LexString() {
string error;
// TODO(b/113077997): Change to absl::CUnescape once it works properly with
// copy-on-write std::string implementations.
- if (!tensorflow::str_util::CUnescape(
- tensorflow::StringPiece(raw.data(), raw.size()), &str_val_,
- &error)) {
+ if (!tensorflow::str_util::CUnescape( // non-absl ok
+ tensorflow::StringPiece(raw.data(), raw.size()), // non-absl ok
+ &str_val_, &error)) {
LOG(ERROR) << "Failed unescaping string: " << raw << ". error: " << error;
return TokKind::kError;
}
diff --git a/tensorflow/compiler/xla/service/hlo_tfgraph_builder.cc b/tensorflow/compiler/xla/service/hlo_tfgraph_builder.cc
index f855212cc7..4876533449 100644
--- a/tensorflow/compiler/xla/service/hlo_tfgraph_builder.cc
+++ b/tensorflow/compiler/xla/service/hlo_tfgraph_builder.cc
@@ -36,7 +36,7 @@ using tensorflow::TensorShapeProto;
string GetOpDefName(const HloInstruction* instruction) {
string name = StrCat("hlo-", HloOpcodeString(instruction->opcode()));
- tensorflow::str_util::TitlecaseString(&name, "-");
+ tensorflow::str_util::TitlecaseString(&name, "-"); // non-absl ok
name.erase(std::remove(name.begin(), name.end(), '-'), name.end());
if (instruction->opcode() == HloOpcode::kFusion) {
diff --git a/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc b/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc
index e0549b1c47..75b63c3b84 100644
--- a/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc
+++ b/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc
@@ -67,7 +67,7 @@ int main(int argc, char** argv) {
floats.push_back(value);
}
- tensorflow::StringPiece content(
+ tensorflow::StringPiece content( // non-absl ok
tensorflow::bit_cast<const char*>(floats.data()),
floats.size() * sizeof(float));
TF_CHECK_OK(tensorflow::WriteStringToFile(tensorflow::Env::Default(),