“27c481c8863a909006b003e5f89f27193780c8e2”上不存在“git@gitcode.net:taosdata/tdengine.git”
nccl_gpu_common.h 2.3 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
struct Communicator {
  std::vector<ncclComm_t> comms_;
D
Dong Zhihong 已提交
70 71 72 73 74
  std::unordered_map<int, int> comm_id_map_;

  int GetCommId(int device_id) const { return comm_id_map_.at(device_id); }

  void InitAll(const std::vector<int>& gpus) {
D
Dong Zhihong 已提交
75
    comms_.resize(gpus.size());
D
Dong Zhihong 已提交
76 77 78 79
    for (size_t i = 0; i < gpus.size(); ++i) {
      comm_id_map_[gpus[i]] = i;
    }
    PADDLE_ENFORCE(ncclCommInitAll(comms_.data(), gpus.size(), gpus.data()));
D
Dong Zhihong 已提交
80
  }
D
Dong Zhihong 已提交
81 82

  ~Communicator() {
D
Dong Zhihong 已提交
83 84
    for (size_t i = 0; i < comms_.size(); ++i) {
      PADDLE_ENFORCE(ncclCommDestroy(comms_[i]));
D
Dong Zhihong 已提交
85 86
    }
  }
D
Dong Zhihong 已提交
87

D
Dong Zhihong 已提交
88
  // DISABLE_COPY_AND_ASSIGN(Communicator);
D
Dong Zhihong 已提交
89
};
D
dzhwinter 已提交
90

D
Dong Zhihong 已提交
91
Communicator* NewCommunicator(const std::vector<int>& gpus);
D
dzhwinter 已提交
92

D
Dong Zhihong 已提交
93
}  // namespace platform
D
dzhwinter 已提交
94
}  // namespace paddle