aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-12 16:39:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-12 16:43:24 -0700
commitbbe22bb053d7fef734e4465f22e8101b0bf5efbc (patch)
tree058ccd28cf225bcfb7662bbdbee9912bb5c4e8c0 /tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc
parent8337fb50cf36f41fa309833d5b12f3d686c89cb3 (diff)
Change HloBuffer, HloBufferSet and HloValueSet to hold pointers rather than ids.
This makes it easier to implement logic like returning the size of an HloBuffer, which requires knowing the underlying HloValues. No functional changes; only a change of representation. PiperOrigin-RevId: 161737042
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc b/tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc
index af7e22f9e1..2b685e355f 100644
--- a/tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc
+++ b/tensorflow/compiler/xla/service/hlo_dataflow_analysis_test.cc
@@ -56,9 +56,9 @@ class HloDataflowAnalysisTest : public HloTestBase,
const ShapeIndex& index = {}) {
CHECK(analysis_ != nullptr);
std::vector<HloValue> values;
- for (HloValue::Id value_id :
- analysis_->GetValueSet(instruction, index).value_ids()) {
- values.push_back(analysis_->GetValue(value_id));
+ for (const HloValue* value :
+ analysis_->GetValueSet(instruction, index).values()) {
+ values.push_back(*value);
}
return values;
}