aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tests/oom_test.py
Commit message (Collapse)AuthorAge
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-08-22
| | | | | | | | 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: 209837298
* Fix oom_test so that it doesn't try to allocate a giant host buffer whenGravatar Justin Lebar2018-05-04
| | | | | | | run without --config=cuda. Sadly the best way I could come up with is pretty hacky. PiperOrigin-RevId: 195325149
* Add a test to check graceful handling of out-of-memory conditions.Gravatar A. Unique TensorFlower2018-04-06
| | | | PiperOrigin-RevId: 191860462
* Automated g4 rollback of changelist 189888700Gravatar A. Unique TensorFlower2018-03-21
| | | | PiperOrigin-RevId: 189910239
* We were ValueOrDie()ing in one place, and TF_CHECK_OK()ing in another. Both ↵Gravatar A. Unique TensorFlower2018-03-21
should gracefully return an error condition. Add some tests to check this. PiperOrigin-RevId: 189888700