send_op.cc 3.6 KB
Newer Older
L
Luo Tao 已提交
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
武毅 已提交
2

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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

#include <ostream>

#include "paddle/framework/data_type.h"
#include "paddle/framework/framework.pb.h"
#include "paddle/framework/lod_tensor.h"
#include "paddle/framework/op_registry.h"

#include "paddle/operators/detail/send_recv_impl.h"
#include "paddle/operators/detail/simple_block_queue.h"

namespace paddle {
namespace operators {

// TODO(typhoonzero): this is a simple implementation which only send
// one tensor
class SendOp : public framework::OperatorBase {
 public:
  SendOp(const std::string &type, const framework::VariableNameMap &inputs,
         const framework::VariableNameMap &outputs,
         const framework::AttributeMap &attrs)
      : OperatorBase(type, inputs, outputs, attrs) {
    // init client when the operator is created at runtime.
T
typhoonzero 已提交
37 38 39 40 41
    std::vector<std::string> endpoints =
        Attr<std::vector<std::string>>("endpoints");
    for (auto ep : endpoints) {
      client_map_[ep].reset(new detail::RPCClient(
          grpc::CreateChannel(ep, grpc::InsecureChannelCredentials())));
武毅 已提交
42 43
    }
  }
T
typhoonzero 已提交
44

武毅 已提交
45
  void Run(const framework::Scope &scope,
T
typhoonzero 已提交
46
           const platform::Place &dev_place) const override {
T
typhoonzero 已提交
47
    auto ins = Inputs("X");
T
typhoonzero 已提交
48
    auto outs = Outputs("Out");
T
typhoonzero 已提交
49 50 51 52
    std::vector<std::string> epmap = Attr<std::vector<std::string>>("epmap");
    // TODO(typhoonzero): use async calls to send multiple variable asyncly.
    for (size_t i = 0; i < ins.size(); ++i) {
      bool ret = client_map_[epmap[i]]->SendVariable(scope, ins[i]);
T
typhoonzero 已提交
53
      if (!ret) {
T
typhoonzero 已提交
54
        LOG(ERROR) << "send variable error: " << ins[i];
T
typhoonzero 已提交
55
      }
武毅 已提交
56
    }
T
typhoonzero 已提交
57 58
    // TODO(typhoonzero): support async optimization
    client_map_[epmap[0]]->Wait();
T
typhoonzero 已提交
59 60
    for (size_t i = 0; i < outs.size(); ++i) {
      bool ret = client_map_[epmap[i]]->GetVariable(scope, outs[i]);
T
typhoonzero 已提交
61
      if (!ret) {
T
typhoonzero 已提交
62
        LOG(ERROR) << "GetVariable error: " << outs[i];
T
typhoonzero 已提交
63
      }
武毅 已提交
64 65 66 67
    }
  }

 protected:
T
typhoonzero 已提交
68 69
  mutable std::unordered_map<std::string, std::shared_ptr<detail::RPCClient>>
      client_map_;
武毅 已提交
70 71 72 73
};

class SendOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
74
  SendOpMaker(OpProto *proto, OpAttrChecker *op_checker)
武毅 已提交
75
      : OpProtoAndCheckerMaker(proto, op_checker) {
T
typhoonzero 已提交
76
    AddInput("X", "(Tensor) Input tensor to be send").AsDuplicable();
T
typhoonzero 已提交
77 78
    AddOutput("Out", "(Tensor) Output tensor to get from server")
        .AsDuplicable();
武毅 已提交
79 80 81 82 83
    AddComment(R"DOC(
Recv operator

This operator will recv tensor from send_op
)DOC");
T
typhoonzero 已提交
84 85
    AddAttr<std::vector<std::string>>("endpoints",
                                      "(string vector, default 127.0.0.1:6164)"
T
typhoonzero 已提交
86 87
                                      "Server endpoints to send variables to.")
        .SetDefault({});
T
typhoonzero 已提交
88 89 90
    AddAttr<std::vector<std::string>>("epmap",
                                      "(string vector, default 127.0.0.1:6164)"
                                      "Server endpoints in the order of input "
T
typhoonzero 已提交
91 92
                                      "variables for mapping")
        .SetDefault({});
武毅 已提交
93 94 95 96 97 98 99 100 101
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OPERATOR(send, ops::SendOp, ops::SendOpMaker);