aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo.proto
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-10-09 06:58:06 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-09 07:03:05 -0700
commite730b261f9028b2f3430461b82c30c86b9ece22f (patch)
tree21e03c5b6d86daf7d91820be31657d7d63809d1b /tensorflow/compiler/xla/service/hlo.proto
parent69f60d4c8cb5edb6fdc63b837b6db29562d28744 (diff)
Automated rollback of commit 375c109659d2d0e6265447dffdeb460693b3cccf
PiperOrigin-RevId: 216350134
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo.proto')
-rw-r--r--tensorflow/compiler/xla/service/hlo.proto29
1 files changed, 0 insertions, 29 deletions
diff --git a/tensorflow/compiler/xla/service/hlo.proto b/tensorflow/compiler/xla/service/hlo.proto
index 82c8fb1904..a0eb9e6ddc 100644
--- a/tensorflow/compiler/xla/service/hlo.proto
+++ b/tensorflow/compiler/xla/service/hlo.proto
@@ -225,32 +225,6 @@ message HloScheduleProto {
map<int64, InstructionSequence> sequences = 1;
}
-message HloInputOutputAliasProto {
- // The following proto describes a pair of aliased an input
- // (described by parameter number and a ShapeIndex of the parameter)
- // and an output (described by a ShapeIndex of the root
- // instruction). For example:
- //
- // entry = {
- // output_shape_index={1},
- // parameter_number=0,
- // parameter_shape_index={1, 2},
- // }
- //
- // This entry indicates that the first paremter's {1, 2} element is
- // aliased with the {1} element of the root instruction.
- message AliasEntryProto {
- // ShapeIndex of the root hlo.
- repeated int64 output_shape_index = 1;
- // Number of the parameter in entry computation.
- int64 parameter_number = 2;
- // ShapeIndex of the parameter instruction.
- repeated int64 parameter_shape_index = 3;
- }
-
- repeated AliasEntryProto entries = 1;
-}
-
// Serialization of HloModule.
message HloModuleProto {
string name = 1;
@@ -269,9 +243,6 @@ message HloModuleProto {
// The schedule for this module.
HloScheduleProto schedule = 7;
-
- // Describes alias information between inputs and outputs.
- HloInputOutputAliasProto input_output_alias = 8;
}
// Serialization of LogicalBuffer.