nccl_gpu_common.h 3.1 KB
Newer Older
D
Dong Zhihong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

   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. */

D
dongzhihong 已提交
15 16
#pragma once

D
Dong Zhihong 已提交
17 18
#include <algorithm>
#include <condition_variable>
D
dzhwinter 已提交
19 20
#include <memory>
#include <mutex>
D
Dong Zhihong 已提交
21
#include <string>
D
dzhwinter 已提交
22
#include <unordered_map>
D
Dong Zhihong 已提交
23
#include <vector>
D
dzhwinter 已提交
24

D
dongzhihong 已提交
25
#include "paddle/platform/device_context.h"
D
Dong Zhihong 已提交
26
#include "paddle/platform/enforce.h"
D
dongzhihong 已提交
27 28 29 30

namespace paddle {
namespace platform {

D
Dong Zhihong 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
class WaitGroup {
 public:
  inline void Add(int n) {
    std::unique_lock<std::mutex> lk(mu_);
    PADDLE_ENFORCE(n >= 0, "add wait must >=0.");
    counter_ += n;
  }

  inline void Done(int n) {
    std::unique_lock<std::mutex> lk(mu_);
    PADDLE_ENFORCE(n <= counter_, " wait group done unmatch to add.");
    counter_ -= n;
    if (counter_ == 0) {
      cv_.notify_all();
    }
  }

  inline void Add() { Add(1); }

  inline void Done() { Done(1); }

  inline void Wait() {
    std::unique_lock<std::mutex> lk(mu_);
    cv_.wait(lk, [&] { return counter_ == 0; });
  }

  inline int GetCount() {
    std::unique_lock<std::mutex> lk(mu_);
    return counter_;
  }

 private:
  int counter_ = 0;
  std::mutex mu_;
  std::condition_variable cv_;
};
D
dzhwinter 已提交
67

D
Dong Zhihong 已提交
68 69 70
// TODO(dzh) : make resources managed unified with framework
struct Communicator {
  std::vector<ncclComm_t> comms_;
D
Dong Zhihong 已提交
71
  std::vector<cudaStream_t> streams_;
D
Dong Zhihong 已提交
72 73 74 75 76 77 78 79 80 81
  std::vector<cudaEvent_t> events_;
  std::vector<int> gpus_;
  WaitGroup wg_;
  int root_gpu = -1;
  // cudaEvent_t root_monitor;
  explicit Communicator(const std::vector<int>& gpus) : gpus_(gpus) {
    comms_.resize(gpus.size());
    streams_.resize(gpus.size());
    events_.resize(gpus.size());
  }
D
Dong Zhihong 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

  ~Communicator() {
    for (size_t i = 0; i < gpus_.size(); ++i) {
      int gid = gpus_[i];
      platform::SetDeviceId(gid);

      int idx = gid % gpus_.size();
      // wait finish
      PADDLE_ENFORCE(
          cudaStreamWaitEvent(comm->streams_[idx], comm->events_[idx], 0));

      PADDLE_ENFORCE(cudaEventDestroy(comm->events_[idx]));

      PADDLE_ENFORCE(ncclCommDestroy(comm->comms_[idx]));
    }
  }
D
Dong Zhihong 已提交
98 99

  inline int get_root_gpu() const { return root_gpu; }
D
dzhwinter 已提交
100

D
Dong Zhihong 已提交
101 102
  inline void set_root_gpu(int id) { root_gpu = id; }
};
D
dzhwinter 已提交
103

D
dongzhihong 已提交
104 105 106 107 108 109 110
class NCCLManager {
 public:
  static NCCLManager* Get() {
    static NCCLManager m;
    return &m;
  }

D
Dong Zhihong 已提交
111 112 113
  NCCLManager();

  ~NCCLManager();
D
dongzhihong 已提交
114

D
dzhwinter 已提交
115
  // for each card only have one communicator
D
Dong Zhihong 已提交
116
  Communicator* GetCommunicator(const std::vector<int>& gpus);
D
dzhwinter 已提交
117

D
dongzhihong 已提交
118
 private:
D
Dong Zhihong 已提交
119 120 121
  // // the gpu id list available. Note that only support
  // // whole world communication.
  // std::vector<int> _gpu_worlds;
D
dongzhihong 已提交
122

D
dzhwinter 已提交
123
  // communicator list
D
Dong Zhihong 已提交
124 125
  std::unordered_map<std::string /* key*/, std::unique_ptr<Communicator>>
      comm_table;
D
dongzhihong 已提交
126
};
D
dzhwinter 已提交
127

D
Dong Zhihong 已提交
128
}  // namespace platform
D
dzhwinter 已提交
129
}  // namespace paddle