aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/call_inliner.cc
Commit message (Collapse)AuthorAge
* [XLA] Switch to absl::StrFormat.Gravatar Justin Lebar2018-08-27
| | | | | | | | Unlike Printf, StrFormat does not require type-length qualifiers, e.g %z, %ll. Nor does it require that you call c_str() to print strings. So these are fixed up here as well. PiperOrigin-RevId: 210435915
* Fix HLO domains mis-handling from HLO passes.Gravatar A. Unique TensorFlower2018-07-06
| | | | PiperOrigin-RevId: 203499395
* [TF:XLA] Add while loop invariant code motionGravatar Sanjoy Das2018-01-08
| | | | | | | | | This new pass extracts out loop invariant computations out of while loops into their parent computations. Right now this is enabled only for the CPU backend. PiperOrigin-RevId: 181256166
* [XLA] Make it possible to inline calls to side-effecting computations.Gravatar Chris Leary2017-09-29
| | | | PiperOrigin-RevId: 170515496
* [XLA] Add CallInliner::Inline(), to inline one kCall instruction.Gravatar Justin Lebar2017-09-27
| | | | PiperOrigin-RevId: 170292322
* [XLA] Switch CallInliner to use CallGraph::VisitNodes.Gravatar Chris Leary2017-09-08
| | | | PiperOrigin-RevId: 168078645
* [XLA] Handle higher-order HLOs (e.g. While) in CallInliner and test.Gravatar Chris Leary2017-09-08
| | | | PiperOrigin-RevId: 168029345
* [XLA] Create CallInliner HLO pass to recursively force-inline kCall operations.Gravatar Chris Leary2017-07-27
PiperOrigin-RevId: 163436255