rpc_client.h 3.8 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
G
gongweibao 已提交
18
#include <string>
W
Wu Yi 已提交
19
#include "gflags/gflags.h"
G
gongweibao 已提交
20 21 22 23

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

G
gongweibao 已提交
26
DECLARE_int32(rpc_deadline);
W
Wu Yi 已提交
27

G
gongweibao 已提交
28 29
namespace paddle {
namespace operators {
30
namespace distributed {
G
gongweibao 已提交
31 32 33

class RPCClient {
 public:
G
gongweibao 已提交
34 35
  RPCClient() {}
  virtual ~RPCClient() {}
36 37 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,
                                   int64_t time_out = FLAGS_rpc_deadline) = 0;

48 49 50 51 52
  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;

53 54 55
  virtual VarHandlePtr AsyncPrefetchVar(
      const std::string& ep, const platform::DeviceContext& ctx,
      const framework::Scope& scope, const std::string& in_var_name,
Q
Qiao Longfei 已提交
56
      const std::string& out_var_name, const std::string& table_name = "",
57 58 59 60 61 62 63 64
      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;

65 66 67 68
  virtual VarHandlePtr AsyncGetMonomerBarrier(
      const std::string& ep, const std::string& var_name,
      int64_t time_out = FLAGS_rpc_deadline) = 0;

69 70 71 72 73 74
  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 已提交
75

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

Y
Yancey1989 已提交
81
  virtual bool Wait() = 0;
G
gongweibao 已提交
82 83

  template <typename T>
W
Wu Yi 已提交
84 85
  static RPCClient* GetInstance(int trainer_id) {
    std::call_once(init_flag_, &RPCClient::Init<T>, trainer_id);
G
gongweibao 已提交
86 87 88 89 90
    return rpc_client_.get();
  }

  // Init is called by GetInstance.
  template <typename T>
W
Wu Yi 已提交
91 92
  static void Init(int trainer_id) {
    trainer_id_ = trainer_id;
G
gongweibao 已提交
93 94 95 96 97 98 99
    if (rpc_client_.get() == nullptr) {
      rpc_client_.reset(new T());
      rpc_client_->InitImpl();
    }
  }

  virtual void InitImpl() {}
100 101

 protected:
W
Wu Yi 已提交
102 103
  // each trainer have exact one trainer id, it should be static
  static int trainer_id_;
G
gongweibao 已提交
104 105 106 107 108

 private:
  static std::once_flag init_flag_;
  static std::unique_ptr<RPCClient> rpc_client_;
};
109
}  // namespace distributed
G
gongweibao 已提交
110 111
}  // namespace operators
}  // namespace paddle