aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/name_uniquer_test.cc
Commit message (Collapse)AuthorAge
* Avoid rewriting HLO instruction names if they do not collide.Gravatar A. Unique TensorFlower2018-06-25
| | | | | | When debugging by loading back saved HLO text files, it is confusing the fact that despite no name collision happen, the instructions seen in the loaded HLO module do not correspond anymore to the text being exchanged for debugging. PiperOrigin-RevId: 202045879
* [XLA] Fix a bug in the name_uniquer.Gravatar A. Unique TensorFlower2018-04-19
| | | | | | The problem happens because the name_uniquer stripped away the numeric suffix if it <=0. The solution is, if there was a numeric suffix, the result should also have a numeric suffix. PiperOrigin-RevId: 193606838
* [XLA] Sanitize hlo names to match regexp "[a-zA-Z_][a-zA-Z0-9_.-]*".Gravatar A. Unique TensorFlower2017-11-30
| | | | PiperOrigin-RevId: 177518046
* Make the HLO proto representation (hlo.proto) full fidelity. Hlo modules can ↵Gravatar Mark Heffernan2017-10-13
be serialized to HLO protos and deserialized without any information loss. As part of this change, a bug is fixed in NameUniquer. Previously, passing names with numeric suffixes could result in name collisions. PiperOrigin-RevId: 172161360