aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tests/concat_ops_test.py
Commit message (Collapse)AuthorAge
* [TF:XLA] Split XLA Concat Ops that fail on large sets of inputs.Gravatar A. Unique TensorFlower2018-09-14
| | | | | | Make the test large to prevent occasional timeouts on CPU. This should normally complete in well under a minute. PiperOrigin-RevId: 212953337
* Automated rollback of commit 4c936f1b220676d0d427f5f38b4111cfb9011b5aGravatar A. Unique TensorFlower2018-09-12
| | | | PiperOrigin-RevId: 212600364
* Automated rollback of commit c5267a54a63a08234a0314888f6cfe842647a73bGravatar A. Unique TensorFlower2018-09-12
| | | | PiperOrigin-RevId: 212595533
* Automated rollback of commit 5a635e3472e16007830fca533c35b2f63fc4f898Gravatar A. Unique TensorFlower2018-09-07
| | | | PiperOrigin-RevId: 211948271
* [TF:XLA] Split XLA Concat Ops that fail on large sets of inputs.Gravatar A. Unique TensorFlower2018-09-07
| | | | | | GPU would fail due to having too many parameters to fit in memory because Concat's signature is variadic and can have an unlimited number of inputs. PiperOrigin-RevId: 211942734
* 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
* Import package xla_test instead of class XLATestCase.Gravatar A. Unique TensorFlower2018-06-28
| | | | PiperOrigin-RevId: 202572322
* Removing underscore prefixes from hidden generated Python functions.Gravatar Anna R2018-02-28
| | | | PiperOrigin-RevId: 187386941
* Update comment: `tf.pack` -> `tf.stack`.Gravatar A. Unique TensorFlower2017-01-28
| | | | Change: 145908199
* [TF:XLA] Remove two concat gradient test cases that took an unreasonably ↵Gravatar Peter Hawkins2017-01-28
| | | | | | long time to run. Change: 145884708
* Add tf.concat with the new argument order: tf.concat(values, axis, name). Also,Gravatar A. Unique TensorFlower2017-01-10
| | | | | set tf.concat_v2 to be an alias to tf.concat and remove concat_v2 doc. Change: 144139939
* Initial open-source release of XLA: Accelerated Linear Algebra.Gravatar Peter Hawkins2017-01-09
XLA is a compiler-based linear algebra execution engine that targets CPUs, GPUs and custom accelerators. XLA is still experimental; we are releasing it early to get the community involved. Change: 143990941