aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/buffer_liveness.cc
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-05-11 16:04:54 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-11 16:07:35 -0700
commit2f5f2cb4253b4eaf7953cf7ed28f76e0bdee6fcc (patch)
tree40e3333bbb20237045d50565b24c250de5d7141c /tensorflow/compiler/xla/service/buffer_liveness.cc
parent5828842e5956825a65a5423b1ca503f72b084e62 (diff)
[XLA] s/tensorflow::Status/Status/.
These are type aliases of one another; we'd like to be consistent and use the shorter one. PiperOrigin-RevId: 196322955
Diffstat (limited to 'tensorflow/compiler/xla/service/buffer_liveness.cc')
-rw-r--r--tensorflow/compiler/xla/service/buffer_liveness.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/buffer_liveness.cc b/tensorflow/compiler/xla/service/buffer_liveness.cc
index 37982aaef9..acb546a0a1 100644
--- a/tensorflow/compiler/xla/service/buffer_liveness.cc
+++ b/tensorflow/compiler/xla/service/buffer_liveness.cc
@@ -44,7 +44,7 @@ StatusOr<std::unique_ptr<BufferLiveness>> BufferLiveness::Run(
return std::move(liveness);
}
-tensorflow::Status BufferLiveness::Analyze() {
+Status BufferLiveness::Analyze() {
TF_ASSIGN_OR_RETURN(points_to_analysis_, TuplePointsToAnalysis::Run(module_));
for (auto* computation : module_->computations()) {
if (computation->IsFusionComputation()) {
@@ -71,7 +71,7 @@ tensorflow::Status BufferLiveness::Analyze() {
}
XLA_VLOG_LINES(3, ToString());
- return tensorflow::Status::OK();
+ return Status::OK();
}
string BufferLiveness::ToString() const {