aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Peter Hawkins <phawkins@google.com>2017-04-19 18:25:45 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-19 19:49:50 -0700
commit225f4e323e8f76807e6bbc9c3026dcd37d828fed (patch)
tree81f333d291ae6e75e9d2300c6b9c1cfff6f3f0be
parent149553af786d05a7c7c07198acacf3623a2cc3b1 (diff)
[XLA] Change types of InfeedRequest and OutfeedRequest configuration fields to "bytes" instead of "string".
Change: 153665746
-rw-r--r--tensorflow/compiler/xla/xla_data.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/xla_data.proto b/tensorflow/compiler/xla/xla_data.proto
index cf4c9e0fe5..e5b94fcefe 100644
--- a/tensorflow/compiler/xla/xla_data.proto
+++ b/tensorflow/compiler/xla/xla_data.proto
@@ -408,7 +408,7 @@ message InfeedRequest {
Shape shape = 2;
// Additional infeed configuration for the backend.
- string config = 3;
+ bytes config = 3;
}
message OutfeedRequest {
@@ -419,7 +419,7 @@ message OutfeedRequest {
ComputationDataHandle operand = 2;
// Backend-specific information for how to perform the outfeed.
- string outfeed_config = 3;
+ bytes outfeed_config = 3;
}
message CallRequest {