aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/defuser.cc
Commit message (Collapse)AuthorAge
* [XLA] Migrate from gtl::FlatMap to absl::flat_hash_mapGravatar Benjamin Kramer2018-10-01
| | | | PiperOrigin-RevId: 215272497
* Add de-fuser pass which replaces fusion nodes with their non-fusedGravatar Mark Heffernan2017-10-25
equivalents. This pass will be used in tools added in followup CLs. The motivation for this pass is running an HLO module which was built for one backend on a different backend for testing and debugging. De-fusing is necessary because different backends have different fusion support. Also, fix problem with deletion of fused computation identified when testing the defuser. PiperOrigin-RevId: 173442671