rpc_client.h 3.5 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 48 49 50
  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;

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

  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 已提交
66

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

Y
Yancey1989 已提交
72
  virtual bool Wait() = 0;
G
gongweibao 已提交
73 74

  template <typename T>
W
Wu Yi 已提交
75 76
  static RPCClient* GetInstance(int trainer_id) {
    std::call_once(init_flag_, &RPCClient::Init<T>, trainer_id);
G
gongweibao 已提交
77 78 79 80 81
    return rpc_client_.get();
  }

  // Init is called by GetInstance.
  template <typename T>
W
Wu Yi 已提交
82 83
  static void Init(int trainer_id) {
    trainer_id_ = trainer_id;
G
gongweibao 已提交
84 85 86 87 88 89 90 91
    if (rpc_client_.get() == nullptr) {
      rpc_client_.reset(new T());
      rpc_client_->InitImpl();
    }
  }

 protected:
  virtual void InitImpl() {}
W
Wu Yi 已提交
92 93
  // each trainer have exact one trainer id, it should be static
  static int trainer_id_;
G
gongweibao 已提交
94 95 96 97 98

 private:
  static std::once_flag init_flag_;
  static std::unique_ptr<RPCClient> rpc_client_;
};
99
}  // namespace distributed
G
gongweibao 已提交
100 101
}  // namespace operators
}  // namespace paddle