aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/copy_insertion.cc
diff options
context:
space:
mode:
authorGravatar Eli Bendersky <eliben@google.com>2017-01-24 09:24:24 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-24 09:45:38 -0800
commit5ec1c90832a70774562bda541e4e93473233c945 (patch)
treeb83b6aa82c517cc25bdf97c029427509d61bee86 /tensorflow/compiler/xla/service/copy_insertion.cc
parent0b0430d588501b09ff3283f390270859fc9a1cf4 (diff)
[XLA] Replace std::mutex & std::condition_variable by TF equivalents
Also remove another stale TODO Change: 145427284
Diffstat (limited to 'tensorflow/compiler/xla/service/copy_insertion.cc')
-rw-r--r--tensorflow/compiler/xla/service/copy_insertion.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/service/copy_insertion.cc b/tensorflow/compiler/xla/service/copy_insertion.cc
index e20f67fa9c..81f54c26ec 100644
--- a/tensorflow/compiler/xla/service/copy_insertion.cc
+++ b/tensorflow/compiler/xla/service/copy_insertion.cc
@@ -175,7 +175,6 @@ tensorflow::Status InstructionCopier::RecordAmbiguousOrNonDistinctIndices(
const PointsToSet& points_to =
points_to_analysis.GetPointsToSet(instruction_);
// Mapping from LogicalBuffer to index (used to detect non-distinct indices).
- // TODO(b/32116879) User ShapeIndex here when it is available.
std::unordered_map<const LogicalBuffer*, std::vector<ShapeIndex>>
buffer_to_source_indices;
TF_RETURN_IF_ERROR(points_to.ForEachElement([this, &buffer_to_source_indices](