aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/reporter.cc
Commit message (Collapse)AuthorAge
* Add methods to TestReporter to log extras for benchmarks.Gravatar Shashi Shekhar2018-04-06
| | | | PiperOrigin-RevId: 191960433
* Add BenchmarkType to TestResults proto and fix logging of C++ microbenchmarks.Gravatar Eugene Brevdo2017-03-02
| | | | | C++ microbenchmarks results are now normalized by iters (like python benchmarks). Change: 149045367
* Change FileExists to return tensorflow::Status.Gravatar Jonathan Hseu2016-11-04
| | | | | | | | | | | Also done separately by @llhe at github.com/tensorflow/tensorflow/pull/5370. We needed to do this change internally to fix all callers. Motivation: The existing FileExists interface doesn't allow callers to distinguish between file not found vs. filesystem errors. Semantics changes: - gfile.Exists in Python now throws an exception for filesystem errors. It continues to return true/false if it can accurately determine whether a file exists. - RecursivelyCreateDir now returns errors for filesystem errors when calling FileExists. Change: 138224013
* TensorFlow: minor change functions in Env interface.Gravatar Vijay Vasudevan2016-06-16
| | | | | | | | | | Switches to return a std::unique_ptr<> to convey transfer of ownership. Keeps existing functions temporarily for backwards compatibility. Change file_system.h interface to switch entirely to the new interface, change all callers. If this breaks someone in the public, the interface change should be straightforward. Change: 125127028
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Change tensorflow benchmark code to export results as serialized proto insteadGravatar A. Unique TensorFlower2016-04-22
| | | | | | of text proto. This simplifies ues of LITE_RUNTIME for mobile, where text functions are not available natively. Change: 120545368
* Final fix to TestReporter (hopefully).Gravatar Eugene Brevdo2016-02-26
| | | | Change: 115675044
* Rollback of "TestReporter is back in. Maybe also fixed the Android build."Gravatar Vijay Vasudevan2016-02-25
| | | | | Test fails. Change: 115602477
* TestReporter is back in. Maybe also fixed the Android build.Gravatar Eugene Brevdo2016-02-25
| | | | Change: 115589642
* TensorFlow: fix bug in StringPiece::contains which made it alwaysGravatar Vijay Vasudevan2016-02-25
| | | | | | return true. Add a unittest to catch this type of regression in the future. Change: 115573280
* Added TestReporter and test / benchmark reporting tools.Gravatar Eugene Brevdo2016-02-25
These tools are meant to allow recording of benchmark & unit test structured output to pbtxt files in a directory only when the environment variable TEST_REPORT_FILE_PREFIX is set. For now, only saving of C++ microbenchmark output is supported. Change: 115518303