aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xrt
Commit message (Collapse)AuthorAge
* Allow zero number of inputs in XRT execute operation.Gravatar A. Unique TensorFlower2018-10-01
| | | | PiperOrigin-RevId: 215252408
* Run CPU tests remotely.Gravatar A. Unique TensorFlower2018-09-19
| | | | | | | | | | Being able to run CPU tests remotely while running GPU tests locally required multiple changes: 1. Unify how we tag GPU tests in TF; we now always use tf_cuda_tests_tags(). 2. Tag tests using tf_cuda_tests_tags() with 'local' and 'gpu'; this makes them not run on non-gpu builds and always runs them locally. PiperOrigin-RevId: 213601626
* Global de-std::unique_ptr cleanup for xla::Literal.Gravatar A. Unique TensorFlower2018-09-10
| | | | PiperOrigin-RevId: 212313258
* [XLA] Make tensorflow/compiler use absl::{StrCat,string_view,InlinedVector} ↵Gravatar Benjamin Kramer2018-09-05
| | | | | | | | consistently StringPiece is an alias for absl::string_view, InlinedVector is aliased to absl::InlinedVector. StrCat is compatible, so swapping it out is safe. PiperOrigin-RevId: 211691840
* First checkin of XRT primitives to call XLA computations directly viaGravatar A. Unique TensorFlower2018-08-30
the TensorFlow infrastructure. These primitives will allow direct access to XLA via Cloud TPU, and also provide an easy path to integrate custom XLA computations with other (distributed) TensorFlow computations on CPU and GPU. The API is *very experimental* and subject to change, perhaps substantially in the short term. PiperOrigin-RevId: 211006371