rpc_common.h 2.0 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 30
  RpcContext() = default;

  RpcContext(const std::string &name, const std::vector<std::string> &names,
             const std::vector<std::string> &emap,
             const std::vector<int64_t> &sections)
31 32 33 34
      : var_name(name),
        splited_var_names(names),
        epmap(emap),
        height_sections(sections) {}
Q
Qiao Longfei 已提交
35

Q
can run  
Qiao Longfei 已提交
36
  RpcContext(const RpcContext &ctx) {
Q
Qiao Longfei 已提交
37 38 39 40 41 42
    var_name = ctx.var_name;
    splited_var_names = ctx.splited_var_names;
    epmap = ctx.epmap;
    height_sections = ctx.height_sections;
  }

Q
Qiao Longfei 已提交
43 44 45 46 47 48
  std::string var_name;
  std::vector<std::string> splited_var_names;
  std::vector<std::string> epmap;
  std::vector<int64_t> height_sections;
};

Q
can run  
Qiao Longfei 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
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";
  os << "}";
  return os;
}

Q
Qiao Longfei 已提交
74 75 76
}  // namespace distributed
}  // namespace operators
}  // namespace paddle