aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/dfs_hlo_visitor.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-05-16 16:54:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-05-16 16:58:10 -0700
commit7ab0c2eff12ea79648f6717dae8558d6669e5c27 (patch)
tree4075232dbebb46626f72aeff0bebae64ae819716 /tensorflow/compiler/xla/service/dfs_hlo_visitor.h
parent06010f39c8ad96151c840245a915ed838eff1ab7 (diff)
Normalize arguments for HandleDynamicSlice. NFC.
PiperOrigin-RevId: 156250579
Diffstat (limited to 'tensorflow/compiler/xla/service/dfs_hlo_visitor.h')
-rw-r--r--tensorflow/compiler/xla/service/dfs_hlo_visitor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/service/dfs_hlo_visitor.h b/tensorflow/compiler/xla/service/dfs_hlo_visitor.h
index a18c643eb7..49e9874cda 100644
--- a/tensorflow/compiler/xla/service/dfs_hlo_visitor.h
+++ b/tensorflow/compiler/xla/service/dfs_hlo_visitor.h
@@ -196,9 +196,9 @@ class DfsHloVisitor {
tensorflow::StringPiece custom_call_target) = 0;
virtual Status HandleSlice(HloInstruction* slice,
HloInstruction* operand) = 0;
- virtual Status HandleDynamicSlice(
- HloInstruction* slice,
- tensorflow::gtl::ArraySlice<HloInstruction*> operands) = 0;
+ virtual Status HandleDynamicSlice(HloInstruction* dynamic_slice,
+ HloInstruction* operand,
+ HloInstruction* start_indices) = 0;
virtual Status HandleDynamicUpdateSlice(HloInstruction* dynamic_update_slice,
HloInstruction* operand,
HloInstruction* update,