aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/execution_options_util.h
Commit message (Collapse)AuthorAge
* Remove THIRD_PARTY_ from #include guardsGravatar Sanjoy Das2018-01-24
| | | | | | They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
* [XLA] Properly propagate backend optimization options to XLA in more places.Gravatar Eli Bendersky2017-06-19
With the flag changes, backend optimization options become critical because without optimization the CPU code runs very slow and GPU code won't compile PTX->AS properly in many cases. Therefore in this CL we add a more helpful fatal CHECK in the GPU backend, along with a convenient way to get default execution options from flags, which clients of XLA should use. PiperOrigin-RevId: 159496597