aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf/master_service.proto
Commit message (Collapse)AuthorAge
* Add go_package to proto definition files (#17262)Gravatar Yong Tang2018-05-02
| | | | | | | | | | | | | | | | | | | | | | | | * Add go_package to proto definition files This fix tries to address the issue raised in 16282 by add go_package to proto files, so that generated go files have correct path. This fix fixes 16282. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/framework Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/example Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/example Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Add remote session support for the MakeCallable API.Gravatar Derek Murray2018-04-06
| | | | PiperOrigin-RevId: 191964391
* Attempt to specify tensorflow::Reset().Gravatar A. Unique TensorFlower2017-03-09
| | | | Change: 149714094
* Fix typo in master_service.proto documentationGravatar Brennan Saeta2016-12-12
| | | | Change: 141803185
* Distributed partial run support.Gravatar Suharsh Sivakumar2016-11-02
| | | | | | | | | | | | This change completes support for distributed partial run. RPC/Proto changes: - PartialRunSetup RPC is added to the Master interface. - A is_partial bool is added to the RunStepRequest. MasterSession implementation: - When the MasterSession gets a PartialRunSetupRequest, it constructs the graph and registers the partitions. - When a is_partial RunStepRequest is received, the feeds and fetches are validated, and corresponding is_partial RunGraphRequests are sent to the workers. Change: 137989990
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Initial version of the open-source distributed TensorFlow runtime.Gravatar Derek Murray2016-02-25
This includes a gRPC server (grpc_tensorflow_server) that can serve as both the master of a distributed TensorFlow computation, and an individual worker in the computation. The GrpcSession class is included to allow client programs (including Python clients) to interact with a server. See tensorflow/core/distributed_runtime/README.md for usage instructions. This change partially addresses issue #23. Change: 115634191