rpc_client.h 4.3 KB
Newer Older
G
gongweibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2018 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

17
#include <condition_variable>  // NOLINT
Q
Qiao Longfei 已提交
18
#include <memory>
G
gongweibao 已提交
19
#include <string>
W
Wu Yi 已提交
20
#include "gflags/gflags.h"
G
gongweibao 已提交
21 22 23 24

#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/scope.h"
25
#include "paddle/fluid/operators/distributed/request_handler.h"
G
gongweibao 已提交
26

G
gongweibao 已提交
27
DECLARE_int32(rpc_deadline);
28
DECLARE_int32(rpc_retry_times);
W
Wu Yi 已提交
29

G
gongweibao 已提交
30 31
namespace paddle {
namespace operators {
32
namespace distributed {
G
gongweibao 已提交
33 34 35

class RPCClient {
 public:
G
gongweibao 已提交
36 37
  RPCClient() {}
  virtual ~RPCClient() {}
38 39 40 41 42 43 44 45 46 47
  virtual VarHandlePtr AsyncSendVar(const std::string& ep,
                                    const platform::DeviceContext& ctx,
                                    const framework::Scope& scope,
                                    const std::string& var_name,
                                    int64_t time_out = FLAGS_rpc_deadline) = 0;

  virtual VarHandlePtr AsyncGetVar(const std::string& ep,
                                   const platform::DeviceContext& ctx,
                                   const framework::Scope& scope,
                                   const std::string& var_name,
48
                                   const std::string& out_varname,
Q
Qiao Longfei 已提交
49
                                   const std::string& table_name = "",
50 51
                                   int64_t time_out = FLAGS_rpc_deadline) = 0;

52 53 54 55 56 57
  virtual VarHandlePtr AsyncGetVarNoBarrier(
      const std::string& ep, const platform::DeviceContext& ctx,
      const framework::Scope& scope, const std::string& var_name,
      const std::string& out_varname,
      int64_t time_out = FLAGS_rpc_deadline) = 0;

58 59 60 61 62
  virtual VarHandlePtr AsyncGetMonomerVariable(
      const std::string& ep, const platform::DeviceContext& ctx,
      const framework::Scope& scope, const std::string& var_name,
      int64_t time_out = FLAGS_rpc_deadline) = 0;

63 64 65
  virtual VarHandlePtr AsyncPrefetchVar(
      const std::string& ep, const platform::DeviceContext& ctx,
      const framework::Scope& scope, const std::string& in_var_name,
Q
Qiao Longfei 已提交
66
      const std::string& out_var_name, const std::string& table_name = "",
67 68 69 70 71 72 73 74
      int64_t time_out = FLAGS_rpc_deadline) = 0;

  virtual VarHandlePtr AsyncSendBatchBarrier(
      const std::string& ep, int64_t time_out = FLAGS_rpc_deadline) = 0;

  virtual VarHandlePtr AsyncSendFetchBarrier(
      const std::string& ep, int64_t time_out = FLAGS_rpc_deadline) = 0;

75 76 77 78
  virtual VarHandlePtr AsyncGetMonomerBarrier(
      const std::string& ep, const std::string& var_name,
      int64_t time_out = FLAGS_rpc_deadline) = 0;

79 80 81 82 83 84
  virtual VarHandlePtr AsyncCheckpointNotify(
      const std::string& ep, const std::string& dir,
      int64_t time_out = FLAGS_rpc_deadline) = 0;

  virtual VarHandlePtr AsyncSendComplete(
      const std::string& ep, int64_t time_out = FLAGS_rpc_deadline) = 0;
Y
Yancey1989 已提交
85

Y
Yancey1989 已提交
86 87
  // Complete tells all the pserver instances that finishe the training,
  // the pserver can reduce it's barrier count, and continue to train
Y
Yancey1989 已提交
88
  // with other trainers.
Y
Yancey1989 已提交
89
  virtual void SendComplete() = 0;
W
Wu Yi 已提交
90

Y
Yancey1989 已提交
91
  virtual bool Wait() = 0;
G
gongweibao 已提交
92 93

  template <typename T>
W
Wu Yi 已提交
94 95
  static RPCClient* GetInstance(int trainer_id) {
    std::call_once(init_flag_, &RPCClient::Init<T>, trainer_id);
G
gongweibao 已提交
96 97 98 99 100
    return rpc_client_.get();
  }

  // Init is called by GetInstance.
  template <typename T>
W
Wu Yi 已提交
101
  static void Init(int trainer_id) {
Q
Qiao Longfei 已提交
102
    VLOG(0) << "init rpc client with trainer_id " << trainer_id;
W
Wu Yi 已提交
103
    trainer_id_ = trainer_id;
G
gongweibao 已提交
104 105 106 107 108 109 110
    if (rpc_client_.get() == nullptr) {
      rpc_client_.reset(new T());
      rpc_client_->InitImpl();
    }
  }

  virtual void InitImpl() {}
111 112

 protected:
W
Wu Yi 已提交
113 114
  // each trainer have exact one trainer id, it should be static
  static int trainer_id_;
G
gongweibao 已提交
115 116 117 118 119

 private:
  static std::once_flag init_flag_;
  static std::unique_ptr<RPCClient> rpc_client_;
};
120
}  // namespace distributed
G
gongweibao 已提交
121 122
}  // namespace operators
}  // namespace paddle