aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/buffer_value.cc
Commit message (Collapse)AuthorAge
* [XLA] Stop including str_util.h.Gravatar Justin Lebar2018-08-23
| | | | PiperOrigin-RevId: 210049592
* [XLA] Use absl string types and functions instead of the TF versions.Gravatar Justin Lebar2018-08-23
| | | | | | | Unfortunately this has to be one big patch, because e.g. absl::StrCat doesn't accept a TF StringPiece, but as soon as we switch to absl::string_view, we have to switch away from all of the TF functions. PiperOrigin-RevId: 209957896
* Fix bugs in LogicalBuffer::ToString and BufferValue::ToProto: these functionsGravatar Jeremy Lau2018-05-04
| | | | | | may be called before set_color(), but color() check fails when no color is set. PiperOrigin-RevId: 195327063
* BufferValue is a new base class for LogicalBuffer and HloValue. This makes itGravatar Jeremy Lau2018-05-02
easier to migrate from TuplePointsToAnalysis/LogicalBuffer to HloDataflowAnalysis/HloValue. No functional changes. PiperOrigin-RevId: 195179676