aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_tfgraph_builder_test.cc
Commit message (Collapse)AuthorAge
* [TF:XLA] Migrate unit tests to use the HLO verifier (only tests where the ↵Gravatar Dimitris Vardoulakis2018-09-10
| | | | | | conversion is mostly automated). PiperOrigin-RevId: 212303594
* [TF:XLA] Split literal_util into {literal, literal_util}.Gravatar Kay Zhu2018-07-03
| | | | | | | | | Currently Literal classes sits in literal_util.{h,cc} instead of literal.{h,cc}. It also contains helper functions that are better fit to be their own separate class/namespace. This change starts this process by moving most static factory methods to LiteralUtil namespace. PiperOrigin-RevId: 203217065
* [XLA] Redesign: deprecate ComputationBuilder.Gravatar A. Unique TensorFlower2018-05-04
| | | | PiperOrigin-RevId: 195335330
* Use xla/tests:xla_internal_test_main for all tests under tf/compiler/xlaGravatar Mark Heffernan2017-09-12
| | | | | | | and remove any main() definitions in tests. This enables use of flags in all tests. PiperOrigin-RevId: 168424796
* Remove class xla::LiteralUtil. NFC (mind-numbingly so).Gravatar A. Unique TensorFlower2017-06-19
| | | | | | This patch removes class xla::LiteralUtil and rewrites every call to use class xla::Literal instead. PiperOrigin-RevId: 159446373
* [XLA] Switch HloTestBase-based tests to use new debug options flag.Gravatar Eli Bendersky2017-06-09
| | | | PiperOrigin-RevId: 158522608
* [TF:XLA] Try to incorporate Tensorflow node structure for large HLO GraphDefs.Gravatar A. Unique TensorFlower2017-05-02
| | | | | | This change assumes that a TF subgraph/op does not cross the boundary of a HLO computation and always put top-level TF subgraphs/ops under HLO computations. Change: 154855884
* [TF-XLA] Include TF metedata in HLO GraphDef node's attributes.Gravatar A. Unique TensorFlower2017-04-20
| | | | | This includes TF op names and op types. Change: 153708854
* Support dumping HLO graphs as TF GraphDefs in hlo_graph_dumperGravatar A. Unique TensorFlower2017-04-12
- Added a new --xla_hlo_dump_as_graphdef TF_XLA_FLAGS - Moved hlo_tfgraph_builder from xla/tools/ to xla/service/ - Refactored GraphRendererInterface a bit to support both dot graph and tf graph. Change: 152921467