send_recv_impl.h 4.6 KB
Newer Older
武毅 已提交
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

L
Luo Tao 已提交
3 4 5
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
武毅 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
武毅 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
武毅 已提交
14 15 16 17 18 19

#pragma once

#include "paddle/framework/lod_tensor.h"
#include "paddle/framework/scope.h"
#include "paddle/framework/selected_rows.h"
Y
Yancey 已提交
20
#include "paddle/framework/var_type.h"
武毅 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#include "paddle/operators/detail/simple_block_queue.h"

#include "paddle/operators/detail/send_recv.grpc.pb.h"
#include "paddle/operators/detail/send_recv.pb.h"

#include <grpc++/grpc++.h>

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 {

Y
Yancey 已提交
47
typedef std::pair<std::string, sendrecv::VariableMessage> MessageWithName;
T
typhoonzero 已提交
48

武毅 已提交
49 50 51 52 53
class SendRecvServerImpl final : public SendRecvService::Service {
 public:
  explicit SendRecvServerImpl() {}

  Status SendVariable(ServerContext *context, const VariableMessage *in_var,
T
typhoonzero 已提交
54
                      VoidMessage *out_var) override;
T
typhoonzero 已提交
55
  Status GetVariable(ServerContext *context, const VariableMessage *in_var,
T
typhoonzero 已提交
56
                     VariableMessage *out_var) override;
T
typhoonzero 已提交
57 58
  Status Wait(ServerContext *context, const VoidMessage *in_var,
              VoidMessage *out_var) override;
T
typhoonzero 已提交
59
  void Reset();
T
typhoonzero 已提交
60 61
  void Done();
  void SetScope(framework::Scope *scope) { scope_ = scope; };
武毅 已提交
62

Y
Yancey 已提交
63
  const MessageWithName Get() { return this->var_recv_queue_.Pop(); }
武毅 已提交
64

Y
Yancey 已提交
65
  void Push(const MessageWithName &msg) { this->var_recv_queue_.Push(msg); }
T
typhoonzero 已提交
66

武毅 已提交
67
 private:
T
typhoonzero 已提交
68
  // received variable from RPC, operators fetch variable from this queue.
Y
Yancey 已提交
69
  SimpleBlockQueue<MessageWithName> var_recv_queue_;
T
typhoonzero 已提交
70 71 72 73 74
  framework::Scope *scope_;
  // condition of the sub program
  std::mutex mutex_;
  bool done_;
  std::condition_variable condition_;
武毅 已提交
75 76 77 78 79 80 81 82 83
};

// RPCClient is a class to send tensors to pserver sub-network
// using different hashing methods.
class RPCClient {
 public:
  RPCClient(std::shared_ptr<Channel> channel)
      : stub_(SendRecvService::NewStub(channel)) {}

T
typhoonzero 已提交
84
  bool SendVariable(const framework::Scope &scope, const std::string &inname);
T
typhoonzero 已提交
85
  bool GetVariable(const framework::Scope &scope, const std::string &outname);
T
typhoonzero 已提交
86
  void Wait();
武毅 已提交
87 88 89 90 91

 private:
  std::unique_ptr<SendRecvService::Stub> stub_;
};

Y
Yancey 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
inline void SerializeToMessage(const std::string &name,
                               const framework::Variable *var,
                               const platform::DeviceContext &ctx,
                               VariableMessage *msg) {
  msg->set_varname(name);
  std::ostringstream oss;
  switch (framework::ToVarType(var->Type())) {
    case framework::proto::VarDesc_VarType_LOD_TENSOR:
      msg->set_type(sendrecv::VarType::LOD_TENSOR);
      framework::SerializeToStream(oss, var->Get<framework::LoDTensor>(), ctx);
      break;
    case framework::proto::VarDesc_VarType_SELECTED_ROWS:
      msg->set_type(sendrecv::VarType::SELECTED_ROWS);
      framework::SerializeToStream(oss, var->Get<framework::SelectedRows>(),
                                   ctx);
      break;
    default: {
      PADDLE_THROW("Serialize does not support type: %s",
                   typeid(var->Type()).name());
      break;
    }
  }
  msg->set_serialized(oss.str());
}

inline void DeserializeFromMessage(const VariableMessage &msg,
                                   const platform::DeviceContext &ctx,
                                   framework::Variable *var) {
  using namespace paddle::framework::proto;
  std::istringstream iss(msg.serialized());
  switch (msg.type()) {
    case sendrecv::VarType::LOD_TENSOR:
      DeserializeFromStream(iss, var->GetMutable<framework::LoDTensor>(), ctx);
      break;
    case sendrecv::VarType::SELECTED_ROWS: {
      DeserializeFromStream(iss, var->GetMutable<framework::SelectedRows>(),
                            ctx);
      break;
    }
    default: {
      PADDLE_THROW("Deserialize does not support type: %s",
                   typeid(var->Type()).name());
      break;
    }
  }
}

武毅 已提交
139 140 141
}  // namespace detail
}  // namespace operators
}  // namespace paddle