aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/reporter.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-22 06:25:17 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-22 07:31:52 -0700
commit9668b2981c32ebd804feed9970d7e95c8573e644 (patch)
tree7f5349d66de85015a29d6b33fe09250c5ff8efb4 /tensorflow/core/util/reporter.h
parente9db74626ea9e46a93eb0c15c37a2e138c83fade (diff)
Change tensorflow benchmark code to export results as serialized proto instead
of text proto. This simplifies ues of LITE_RUNTIME for mobile, where text functions are not available natively. Change: 120545368
Diffstat (limited to 'tensorflow/core/util/reporter.h')
-rw-r--r--tensorflow/core/util/reporter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/core/util/reporter.h b/tensorflow/core/util/reporter.h
index 6cfabc01ee..b8dc21a89d 100644
--- a/tensorflow/core/util/reporter.h
+++ b/tensorflow/core/util/reporter.h
@@ -29,8 +29,8 @@ limitations under the License.
namespace tensorflow {
-// The TestReporter writes test / benchmark output to text Protobuf files
-// when the environment variable "TEST_REPORT_FILE_PREFIX" is defined.
+// The TestReporter writes test / benchmark output to binary Protobuf files when
+// the environment variable "TEST_REPORT_FILE_PREFIX" is defined.
//
// If this environment variable is not defined, no logging is performed.
//
@@ -43,8 +43,8 @@ namespace tensorflow {
//
// For example, if the environment variable
// TEST_REPORT_FILE_PREFIX="/tmp/run_"
-// is set, and test_name is "BM_Foo/1/2", then a BenchmarkEntry pbtxt
-// is written to file:
+// is set, and test_name is "BM_Foo/1/2", then a BenchmarkEntries pb
+// with a single entry is written to file:
// /tmp/run_BM_Foo__1__2
//
class TestReporter {