aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/test/run_and_gather_logs.py
Commit message (Collapse)AuthorAge
* 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
* Do not log test results using the text format, the JSON format is sufficient.Gravatar A. Unique TensorFlower2017-02-03
| | | | Change: 146539043
* Split test_log_output flag into two flags: test_log_output_dir andGravatar A. Unique TensorFlower2017-02-01
| | | | | | test_log_output_filename. This lets us create test_log_output_filename automatically if it is not passed in. Change: 146320874
* Updated run_and_gather_logs.py to use argparse.Gravatar A. Unique TensorFlower2017-01-31
| | | | Change: 146194766
* Add a benchmark data uploader script to store test results in gcloud datastore.Gravatar A. Unique TensorFlower2017-01-26
| | | | | | | | | | | | | | The uploader is typically run periodically as a cron job. It processes data files found in a specified directory where the run_and_gather_logs.py script stores the benchmark test results. After processing a file, it moves it to a specified archive directory for safe-keeping. File-locking (flock) is used to allow multiple instances of the uploader to run concurrently if needed, splitting the work among them. Two datastore composite indexes are created to allow fast retrieval of benchmark timing data (for lookup and field (column) projection). Change: 145729637
* Remove so many more hourglass importsGravatar Justine Tunney2016-12-29
| | | | Change: 143230429
* Pass benchmark name (path:target_name) to TestResults proto.Gravatar A. Unique TensorFlower2016-09-22
| | | | Change: 134000963
* Update copyright for 3p/tf/tools.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123889091
* Merge changes from github.Gravatar Vijay Vasudevan2016-03-29
| | | | Change: 118532471
* Another bugfix in run_and_gather_logs.Gravatar Eugene Brevdo2016-03-16
| | | | Change: 117375431
* A few more tweaks to test_log.proto to reflect what's accessible from bazel ↵Gravatar Eugene Brevdo2016-03-15
| | | | | | | | | build. Also some updates to run_and_gather_logs. Reduce the set of tests that run_and_gather_logs_test runs to speed up the tests. Change: 117271064
* Add the test runner run_and_gather_logs to tools/testGravatar Eugene Brevdo2016-03-14
* includes a unit test that runs a benchmark and collects the results. * CC tests in tf/core/kernels now set linkstatic so GPU-based CC tests can be run by this test runner. * refactored the py test declarations in tensorflow.bzl to allow users to set main and args directly. necessary for the test runner. Change: 117170938