/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #pragma once #include "paddle/framework/data_type.h" #include "paddle/framework/lod_tensor.h" #include "paddle/framework/scope.h" #include "paddle/framework/selected_rows.h" #include "paddle/operators/detail/simple_block_queue.h" // #include // #include // #include // #include #include "paddle/operators/detail/send_recv.grpc.pb.h" #include "paddle/operators/detail/send_recv.pb.h" #include using grpc::Channel; using grpc::Server; using grpc::ServerContext; using grpc::ServerReader; using grpc::ServerBuilder; using grpc::ClientContext; using grpc::ClientReader; using grpc::ClientReaderWriter; using grpc::ClientWriter; using grpc::Status; using sendrecv::SendRecvService; using sendrecv::VariableMessage; using sendrecv::VoidMessage; namespace paddle { namespace operators { namespace detail { typedef std::pair TensorWithName; class SendRecvServerImpl final : public SendRecvService::Service { public: explicit SendRecvServerImpl() {} Status SendVariable(ServerContext *context, const VariableMessage *in_var, VariableMessage *out_var) override; const TensorWithName Get() { return this->var_recv_queue_.Pop(); } void Push(const TensorWithName &var) { this->var_return_queue_.Push(var); } private: // received variable from RPC, operators fetch variable from this queue. SimpleBlockQueue var_recv_queue_; // calculated variable should push to this queue. SimpleBlockQueue var_return_queue_; }; // RPCClient is a class to send tensors to pserver sub-network // using different hashing methods. class RPCClient { public: RPCClient(std::shared_ptr channel) : stub_(SendRecvService::NewStub(channel)) {} bool SendVariable(const framework::Scope &scope, const std::string &inname, const std::string &outname); private: std::unique_ptr stub_; }; } // namespace detail } // namespace operators } // namespace paddle