rpc_common.h 2.4 KB
Newer Older
Q
Qiao Longfei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.

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

Q
can run  
Qiao Longfei 已提交
17
#include <iostream>
Q
Qiao Longfei 已提交
18 19 20 21 22 23 24 25
#include <string>
#include <vector>

namespace paddle {
namespace operators {
namespace distributed {

struct RpcContext {
Q
can run  
Qiao Longfei 已提交
26 27 28 29
  RpcContext() = default;

  RpcContext(const std::string &name, const std::vector<std::string> &names,
             const std::vector<std::string> &emap,
1
123malin 已提交
30 31
             const std::vector<int64_t> &sections, int id,
             bool merge_add_ = true, bool use_send_handler_ = true)
32 33 34
      : var_name(name),
        splited_var_names(names),
        epmap(emap),
Q
Qiao Longfei 已提交
35
        height_sections(sections),
1
123malin 已提交
36 37 38
        trainer_id(id),
        merge_add(merge_add_),
        use_send_handler(use_send_handler_) {}
Q
Qiao Longfei 已提交
39

Q
can run  
Qiao Longfei 已提交
40
  RpcContext(const RpcContext &ctx) {
Q
Qiao Longfei 已提交
41 42 43 44
    var_name = ctx.var_name;
    splited_var_names = ctx.splited_var_names;
    epmap = ctx.epmap;
    height_sections = ctx.height_sections;
Q
Qiao Longfei 已提交
45
    trainer_id = ctx.trainer_id;
1
123malin 已提交
46 47
    merge_add = ctx.merge_add;
    use_send_handler = ctx.use_send_handler;
Q
Qiao Longfei 已提交
48 49
  }

Q
Qiao Longfei 已提交
50 51 52 53
  std::string var_name;
  std::vector<std::string> splited_var_names;
  std::vector<std::string> epmap;
  std::vector<int64_t> height_sections;
Q
Qiao Longfei 已提交
54
  int trainer_id;
1
123malin 已提交
55 56
  bool merge_add;
  bool use_send_handler;
Q
Qiao Longfei 已提交
57 58
};

Q
can run  
Qiao Longfei 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
inline std::ostream &operator<<(std::ostream &os, const RpcContext &rpc_ctx) {
  os << "{";
  os << "var_name: " << rpc_ctx.var_name << "\n";

  os << "splited_var_names: [";
  for (auto &name : rpc_ctx.splited_var_names) {
    os << name << ", ";
  }
  os << "]\n";

  os << "epmap: [";
  for (auto &ep : rpc_ctx.epmap) {
    os << ep << ", ";
  }
  os << "]\n";

  os << "height_sections: [";
  for (auto &section : rpc_ctx.height_sections) {
    os << section << ", ";
  }
  os << "]\n";
1
123malin 已提交
80 81 82

  os << "merge add: " << rpc_ctx.merge_add;
  os << "; send handler: " << rpc_ctx.use_send_handler << "\n";
Q
can run  
Qiao Longfei 已提交
83 84 85 86
  os << "}";
  return os;
}

Q
Qiao Longfei 已提交
87 88 89
}  // namespace distributed
}  // namespace operators
}  // namespace paddle