aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/benchmark
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-07-13 08:25:54 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-07-13 09:33:03 -0700
commitc87a7ca3113c95aaf52de7a094773feb2dba2fa1 (patch)
tree698e7b4d50e961b1782df6682e9a4b33ddb6e03f /tensorflow/tools/benchmark
parent4f6e9efb40b1fca70a4fdf547401eafcffda47fa (diff)
s/Tensorflow/TensorFlow. A losing battle :)
Change: 127324936
Diffstat (limited to 'tensorflow/tools/benchmark')
-rw-r--r--tensorflow/tools/benchmark/BUILD2
-rw-r--r--tensorflow/tools/benchmark/README.md2
-rw-r--r--tensorflow/tools/benchmark/benchmark_model.cc6
3 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/tools/benchmark/BUILD b/tensorflow/tools/benchmark/BUILD
index 5a7981e112..0322ea766d 100644
--- a/tensorflow/tools/benchmark/BUILD
+++ b/tensorflow/tools/benchmark/BUILD
@@ -65,7 +65,7 @@ tf_cc_test(
#
# NOTE: currently '-pthread' must be removed from the LINK_OPTS variable
# in @protobuf//:BUILD to sucessfully build for Android. This is temporary
-# pending an update of the version of the protobuf library that Tensorflow
+# pending an update of the version of the protobuf library that TensorFlow
# uses.
cc_binary(
name = "benchmark_model",
diff --git a/tensorflow/tools/benchmark/README.md b/tensorflow/tools/benchmark/README.md
index bcfed4ff14..4cd5c7c524 100644
--- a/tensorflow/tools/benchmark/README.md
+++ b/tensorflow/tools/benchmark/README.md
@@ -1,4 +1,4 @@
-# Tensorflow Model Benchmark Tool
+# TensorFlow Model Benchmark Tool
## Description
diff --git a/tensorflow/tools/benchmark/benchmark_model.cc b/tensorflow/tools/benchmark/benchmark_model.cc
index e23fd7d189..ccb579fd03 100644
--- a/tensorflow/tools/benchmark/benchmark_model.cc
+++ b/tensorflow/tools/benchmark/benchmark_model.cc
@@ -48,7 +48,7 @@ namespace benchmark_model {
Status InitializeSession(int num_threads, const string& graph,
std::unique_ptr<Session>* session,
std::unique_ptr<StatSummarizer>* stats) {
- LOG(INFO) << "Loading Tensorflow.";
+ LOG(INFO) << "Loading TensorFlow.";
tensorflow::SessionOptions options;
tensorflow::ConfigProto& config = options.config;
@@ -61,7 +61,7 @@ Status InitializeSession(int num_threads, const string& graph,
tensorflow::GraphDef tensorflow_graph;
Status s = ReadBinaryProto(Env::Default(), graph, &tensorflow_graph);
if (!s.ok()) {
- LOG(ERROR) << "Could not create Tensorflow Graph: " << s;
+ LOG(ERROR) << "Could not create TensorFlow Graph: " << s;
return s;
}
@@ -69,7 +69,7 @@ Status InitializeSession(int num_threads, const string& graph,
s = (*session)->Create(tensorflow_graph);
if (!s.ok()) {
- LOG(ERROR) << "Could not create Tensorflow Session: " << s;
+ LOG(ERROR) << "Could not create TensorFlow Session: " << s;
return s;
}