send_impl.cc 2.0 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 20 21

#include "send_recv_impl.h"

namespace paddle {
namespace operators {
namespace detail {

bool RPCClient::SendVariable(const framework::Scope& scope,
T
typhoonzero 已提交
22
                             const std::string& inname) {
武毅 已提交
23
  ClientContext context;
T
typhoonzero 已提交
24 25
  VariableMessage msg;
  VoidMessage out_msg;
武毅 已提交
26 27 28 29
  // FIXME(typhoonzero): pass device context to here.
  auto ctx = platform::CPUDeviceContext();
  auto* var = scope.FindVar(inname);
  PADDLE_ENFORCE(var);
Y
Yancey 已提交
30 31
  SerializeToMessage(inname, var, ctx, &msg);

武毅 已提交
32 33
  Status status = stub_->SendVariable(&context, msg, &out_msg);
  if (!status.ok()) {
T
typhoonzero 已提交
34
    LOG(ERROR) << "gRPC error: " << status.error_message();
武毅 已提交
35 36
    return false;
  }
T
typhoonzero 已提交
37 38 39
  return true;
}

T
typhoonzero 已提交
40 41
bool RPCClient::GetVariable(const framework::Scope& scope,
                            const std::string& outname) {
T
typhoonzero 已提交
42
  ClientContext context;
T
typhoonzero 已提交
43 44
  VariableMessage call_msg, ret_msg;
  call_msg.set_varname(outname);
T
typhoonzero 已提交
45
  auto ctx = platform::CPUDeviceContext();
T
typhoonzero 已提交
46
  Status status = stub_->GetVariable(&context, call_msg, &ret_msg);
Y
Yancey 已提交
47
  auto* outvar = scope.FindVar(outname);
T
typhoonzero 已提交
48 49 50 51 52
  if (!status.ok()) {
    LOG(ERROR) << "gRPC error: " << status.error_message();
    return false;
  }

T
typhoonzero 已提交
53
  std::istringstream iss(ret_msg.serialized());
Y
Yancey 已提交
54
  DeserializeFromMessage(ret_msg, ctx, outvar);
T
typhoonzero 已提交
55

武毅 已提交
56 57 58
  return true;
}

T
typhoonzero 已提交
59 60 61 62 63 64
void RPCClient::Wait() {
  ClientContext context;
  VoidMessage call_msg, ret_msg;
  stub_->Wait(&context, call_msg, &ret_msg);
}

武毅 已提交
65 66 67
}  // namespace detail
}  // namespace operators
}  // namespace paddle