aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/stat_summarizer
Commit message (Collapse)AuthorAge
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-21
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 213944355
* Re-enable some tests on WindowsGravatar A. Unique TensorFlower2018-08-14
| | | | PiperOrigin-RevId: 208695032
* Disable tensorflow/contrib/stat_summarizer:stat_summarizer_test from ↵Gravatar Peter Hawkins2018-05-31
| | | | | | continuous build due to flakiness. PiperOrigin-RevId: 198817129
* Disabled some tests on WindowsGravatar A. Unique TensorFlower2018-04-03
| | | | PiperOrigin-RevId: 191494857
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Further BUILD cleanupGravatar A. Unique TensorFlower2017-06-21
| | | | PiperOrigin-RevId: 159749869
* StatSummarizer: Make it work without needing the GraphDef.Gravatar Asim Shankar2017-01-30
| | | | | | | | | | | | | | This will allow the StatSummarizer to be instantiated and used even when the GraphDef is not easily accessible. A consequence of this is that the BY_DEFINITION_ORDER ordering of stats is no longer available, but that was deemed acceptable for this change. Other notables: - Added a basic C++ unittest for stat_summarizer. - Added some commentary about caveats about summaries over runs that involve GPUs or partitioned graphs. These caveats existed in the prior implementation as well. Change: 146076563
* Seal contrib interfaces (as much a feasible). If you were using a symbol ↵Gravatar Martin Wicke2017-01-29
| | | | | | which is now hidden, it should be added to the _allowed_symbols list in the appropriate __init__.py file. Change: 145943844
* Remove so many more hourglass importsGravatar Justine Tunney2016-12-29
| | | | Change: 143230429
* Refactor StatSummarizer: use Stats for more things, remove redundant ↵Gravatar Andrew Harp2016-12-13
| | | | | | methods, combine mem/time data structures, and overhaul sorting / output formatting. Change: 141981032
* Merge changes from github.Gravatar Andrew Harp2016-12-08
| | | | | | | | Additionally: - change single quotes to double quotes to make path rewriting easier - guard windows lib reference with PLATFORM_WINDOWS - fixed failing kmeans test Change: 141515942
* Add python wrapper for StatSummarizer.Gravatar Andrew Harp2016-11-11
Change: 138933733