aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf/tensorflow_server.proto
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2016-03-07 15:18:19 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-03-08 17:15:22 -0800
commit848d554a78715391421737088c348c513e3e8c6d (patch)
treed145de31389b9fb75f60e3bb882785b700ad40a9 /tensorflow/core/protobuf/tensorflow_server.proto
parent13024c58fa87a87db23f6869a0c33598bb5c027d (diff)
Prototype of an in-process gRPC server for TensorFlow/Python.
Adds support for binding a TensorFlow server to any port, to support single-process testing. This interface is a work in progress. In particular, it supports launching a server, but the support for clean shutdown is incomplete. Change: 116593644
Diffstat (limited to 'tensorflow/core/protobuf/tensorflow_server.proto')
-rw-r--r--tensorflow/core/protobuf/tensorflow_server.proto5
1 files changed, 5 insertions, 0 deletions
diff --git a/tensorflow/core/protobuf/tensorflow_server.proto b/tensorflow/core/protobuf/tensorflow_server.proto
index 5b4ee3e85a..9b8ec1b5ed 100644
--- a/tensorflow/core/protobuf/tensorflow_server.proto
+++ b/tensorflow/core/protobuf/tensorflow_server.proto
@@ -105,4 +105,9 @@ message ServerDef {
// The default configuration for sessions that run on this server.
ConfigProto default_session_config = 4;
+
+ // The protocol to be used by this server.
+ //
+ // Acceptable values include: "grpc".
+ string protocol = 5;
}