aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf/master.proto
diff options
context:
space:
mode:
authorGravatar Noah Fiedel <nfiedel@google.com>2016-04-27 07:47:40 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-27 08:51:52 -0700
commitda0433e0c1b488a58ff2c993e9b1a048c09abd5c (patch)
tree28f6dc275397fbc154dd0f015e15a29b930ccd24 /tensorflow/core/protobuf/master.proto
parentd92e9b537912b4d92b978e75b7eeec4325f5cddd (diff)
Move NamedTensorProto from being a private detail of
master.proto, to a public tensor in core/framework. Change: 120919381
Diffstat (limited to 'tensorflow/core/protobuf/master.proto')
-rw-r--r--tensorflow/core/protobuf/master.proto16
1 files changed, 1 insertions, 15 deletions
diff --git a/tensorflow/core/protobuf/master.proto b/tensorflow/core/protobuf/master.proto
index 4c27acf464..6dd0094513 100644
--- a/tensorflow/core/protobuf/master.proto
+++ b/tensorflow/core/protobuf/master.proto
@@ -23,8 +23,8 @@ option java_package = "org.tensorflow.distruntime";
import "tensorflow/core/framework/device_attributes.proto";
import "tensorflow/core/framework/graph.proto";
-import "tensorflow/core/framework/tensor.proto";
import "tensorflow/core/protobuf/config.proto";
+import "tensorflow/core/protobuf/named_tensor.proto";
////////////////////////////////////////////////////////////////////////////////
//
@@ -103,20 +103,6 @@ message ExtendSessionResponse {
//
////////////////////////////////////////////////////////////////////////////////
-// A pair of tensor name and tensor values.
-message NamedTensorProto {
- // Name of the tensor.
- string name = 1;
-
- // The client can populate a TensorProto using a tensorflow::Tensor`, or
- // directly using the protobuf field accessors.
- //
- // The client specifies whether the returned tensor values should be
- // filled tensor fields (float_val, int_val, etc.) or encoded in a
- // compact form in tensor.tensor_content.
- TensorProto tensor = 2;
-}
-
message RunStepRequest {
// REQUIRED: session_handle must be returned by a CreateSession call
// to the same master service.