aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/xla_data.proto
diff options
context:
space:
mode:
authorGravatar Tayo Oguntebi <tayo@google.com>2017-01-27 01:36:39 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-27 01:47:51 -0800
commit9113e98115ecbeb1404edb7d14d2cf443f2484bf (patch)
tree486073385bff02ea23ac0feef4591cdca408310a /tensorflow/compiler/xla/xla_data.proto
parent557c5395dbdc7e87137549b355944e53fb6030d8 (diff)
Addition of Outfeed HLO op.
Change: 145772331
Diffstat (limited to 'tensorflow/compiler/xla/xla_data.proto')
-rw-r--r--tensorflow/compiler/xla/xla_data.proto11
1 files changed, 10 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/xla_data.proto b/tensorflow/compiler/xla/xla_data.proto
index e142186319..ef9b04d409 100644
--- a/tensorflow/compiler/xla/xla_data.proto
+++ b/tensorflow/compiler/xla/xla_data.proto
@@ -385,6 +385,14 @@ message InfeedRequest {
string config = 3;
}
+message OutfeedRequest {
+ // Operand to the Outfeed. Supports tuple.
+ ComputationDataHandle operand = 2;
+
+ // Backend-specific information for how to perform the outfeed.
+ string outfeed_config = 3;
+}
+
message CallRequest {
ComputationHandle to_apply = 2;
repeated ComputationDataHandle operands = 3;
@@ -708,7 +716,8 @@ message OpRequest {
WhileRequest while_request = 29;
SendRequest send_request = 30;
RecvRequest recv_request = 31;
- // Next: 32
+ OutfeedRequest outfeed_request = 32;
+ // Next: 33
}
}