allocator_facade.cc 10.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15 16
#include "paddle/fluid/memory/allocation/allocator_facade.h"

17
#include "gflags/gflags.h"
18
#include "paddle/fluid/memory/allocation/allocator.h"
Y
Yu Yang 已提交
19
#include "paddle/fluid/memory/allocation/allocator_strategy.h"
20
#include "paddle/fluid/memory/allocation/auto_growth_best_fit_allocator.h"
21
#include "paddle/fluid/memory/allocation/cpu_allocator.h"
22
#include "paddle/fluid/memory/allocation/naive_best_fit_allocator.h"
S
sneaxiy 已提交
23
#include "paddle/fluid/memory/allocation/retry_allocator.h"
S
sneaxiy 已提交
24
#include "paddle/fluid/platform/enforce.h"
25
#include "paddle/fluid/platform/place.h"
26
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
27
#include "paddle/fluid/memory/allocation/cuda_allocator.h"
S
sneaxiy 已提交
28
#include "paddle/fluid/memory/allocation/pinned_allocator.h"
29
#include "paddle/fluid/memory/allocation/thread_local_allocator.h"
S
sneaxiy 已提交
30
#include "paddle/fluid/platform/gpu_info.h"
31
#endif
32 33 34
#ifdef PADDLE_WITH_XPU
#include "paddle/fluid/platform/xpu_info.h"
#endif
35
#include "paddle/fluid/platform/npu_info.h"
36

S
sneaxiy 已提交
37
DEFINE_int64(
38
    gpu_allocator_retry_time, 10000,
S
sneaxiy 已提交
39 40 41
    "The retry time (milliseconds) when allocator fails "
    "to allocate memory. No retry if this value is not greater than 0");

42 43 44 45
DEFINE_bool(use_system_allocator, false,
            "Whether to use system allocator to allocate CPU and GPU memory. "
            "Only used for unittests.");

46 47 48 49
namespace paddle {
namespace memory {
namespace allocation {

Y
Yu Yang 已提交
50 51
class AllocatorFacadePrivate {
 public:
52 53
  using AllocatorMap = std::map<platform::Place, std::shared_ptr<Allocator>>;

54
  AllocatorFacadePrivate() {
Z
Zeng Jinle 已提交
55 56
    auto strategy = GetAllocatorStrategy();
    switch (strategy) {
57 58
      case AllocatorStrategy::kNaiveBestFit: {
        InitNaiveBestFitCPUAllocator();
59 60 61 62 63
#ifdef PADDLE_WITH_XPU
        for (int dev_id = 0; dev_id < platform::GetXPUDeviceCount(); ++dev_id) {
          InitNaiveBestFitXPUAllocator(platform::XPUPlace(dev_id));
        }
#endif
64
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
65 66 67 68 69
        for (int dev_id = 0; dev_id < platform::GetCUDADeviceCount();
             ++dev_id) {
          InitNaiveBestFitCUDAAllocator(platform::CUDAPlace(dev_id));
        }
        InitNaiveBestFitCUDAPinnedAllocator();
70 71 72 73 74
#endif
#ifdef PADDLE_WITH_ASCEND_CL
        for (int dev_id = 0; dev_id < platform::GetNPUDeviceCount(); ++dev_id) {
          InitNaiveBestFitNPUAllocator(platform::NPUPlace(dev_id));
        }
75
#endif
Z
Zeng Jinle 已提交
76 77
        break;
      }
78 79 80

      case AllocatorStrategy::kAutoGrowth: {
        InitNaiveBestFitCPUAllocator();
81 82 83 84 85
#ifdef PADDLE_WITH_XPU
        for (int dev_id = 0; dev_id < platform::GetXPUDeviceCount(); ++dev_id) {
          InitNaiveBestFitXPUAllocator(platform::XPUPlace(dev_id));
        }
#endif
86
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
87 88 89 90 91 92
        for (int dev_id = 0; dev_id < platform::GetCUDADeviceCount();
             ++dev_id) {
          InitAutoGrowthCUDAAllocator(platform::CUDAPlace(dev_id));
        }
        InitNaiveBestFitCUDAPinnedAllocator();
#endif
Z
Zeng Jinle 已提交
93 94
        break;
      }
95

96 97
      case AllocatorStrategy::kThreadLocal: {
        InitNaiveBestFitCPUAllocator();
98 99 100 101 102
#ifdef PADDLE_WITH_XPU
        for (int dev_id = 0; dev_id < platform::GetXPUDeviceCount(); ++dev_id) {
          InitNaiveBestFitXPUAllocator(platform::XPUPlace(dev_id));
        }
#endif
103
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
104 105 106 107 108 109 110 111 112
        for (int dev_id = 0; dev_id < platform::GetCUDADeviceCount();
             ++dev_id) {
          InitThreadLocalCUDAAllocator(platform::CUDAPlace(dev_id));
        }
        InitNaiveBestFitCUDAPinnedAllocator();
#endif
        break;
      }

Z
Zeng Jinle 已提交
113
      default: {
114 115
        PADDLE_THROW(platform::errors::InvalidArgument(
            "Unsupported allocator strategy: %d", static_cast<int>(strategy)));
Z
Zeng Jinle 已提交
116
      }
Y
Yu Yang 已提交
117
    }
Z
Zeng Jinle 已提交
118
    InitZeroSizeAllocators();
119
    InitSystemAllocators();
120 121 122 123 124 125

    if (FLAGS_gpu_allocator_retry_time > 0) {
      WrapCUDARetryAllocator(FLAGS_gpu_allocator_retry_time);
    }

    CheckAllocThreadSafe();
Z
Zeng Jinle 已提交
126 127 128 129
  }

  inline const std::shared_ptr<Allocator>& GetAllocator(
      const platform::Place& place, size_t size) {
130 131 132 133
    const auto& allocators =
        (size > 0 ? (UNLIKELY(FLAGS_use_system_allocator) ? system_allocators_
                                                          : allocators_)
                  : zero_size_allocators_);
Z
Zeng Jinle 已提交
134
    auto iter = allocators.find(place);
135 136 137
    PADDLE_ENFORCE_NE(iter, allocators.end(),
                      platform::errors::NotFound(
                          "No allocator found for the place, %s", place));
Z
Zeng Jinle 已提交
138
    return iter->second;
139 140 141
  }

 private:
142 143
  void InitSystemAllocators() {
    system_allocators_[platform::CPUPlace()] = std::make_shared<CPUAllocator>();
144 145 146 147 148 149 150
#ifdef PADDLE_WITH_XPU
    int device_count = platform::GetXPUDeviceCount();
    for (int i = 0; i < device_count; ++i) {
      platform::XPUPlace p(i);
      system_allocators_[p] = std::make_shared<NaiveBestFitAllocator>(p);
    }
#endif
151
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
152 153 154 155 156 157 158 159 160 161
    system_allocators_[platform::CUDAPinnedPlace()] =
        std::make_shared<CPUPinnedAllocator>();
    int device_count = platform::GetCUDADeviceCount();
    for (int i = 0; i < device_count; ++i) {
      platform::CUDAPlace p(i);
      system_allocators_[p] = std::make_shared<CUDAAllocator>(p);
    }
#endif
  }

162 163 164
  void InitNaiveBestFitCPUAllocator() {
    allocators_[platform::CPUPlace()] =
        std::make_shared<NaiveBestFitAllocator>(platform::CPUPlace());
Y
Yu Yang 已提交
165 166
  }

167
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
168 169 170
  void InitNaiveBestFitCUDAPinnedAllocator() {
    allocators_[platform::CUDAPinnedPlace()] =
        std::make_shared<NaiveBestFitAllocator>(platform::CUDAPinnedPlace());
171 172
  }

173 174
  void InitNaiveBestFitCUDAAllocator(platform::CUDAPlace p) {
    allocators_[p] = std::make_shared<NaiveBestFitAllocator>(p);
175
  }
Y
Yu Yang 已提交
176

177 178 179 180
  void InitThreadLocalCUDAAllocator(platform::CUDAPlace p) {
    allocators_[p] = std::make_shared<ThreadLocalCUDAAllocator>(p);
  }

181 182 183 184
  void InitAutoGrowthCUDAAllocator(platform::CUDAPlace p) {
    auto cuda_allocator = std::make_shared<CUDAAllocator>(p);
    allocators_[p] = std::make_shared<AutoGrowthBestFitAllocator>(
        cuda_allocator, platform::GpuMinChunkSize());
S
sneaxiy 已提交
185
  }
186
#endif
S
sneaxiy 已提交
187

188 189 190 191 192 193
#ifdef PADDLE_WITH_XPU
  void InitNaiveBestFitXPUAllocator(platform::XPUPlace p) {
    allocators_[p] = std::make_shared<NaiveBestFitAllocator>(p);
  }
#endif

194 195 196 197 198 199
#ifdef PADDLE_WITH_ASCEND_CL
  void InitNaiveBestFitNPUAllocator(platform::NPUPlace p) {
    allocators_[p] = std::make_shared<NaiveBestFitAllocator>(p);
  }
#endif

Z
Zeng Jinle 已提交
200 201 202 203
  class ZeroSizeAllocator : public Allocator {
   public:
    explicit ZeroSizeAllocator(platform::Place place) : place_(place) {}

204 205
    bool IsAllocThreadSafe() const override { return true; }

Z
Zeng Jinle 已提交
206
   protected:
207
    Allocation* AllocateImpl(size_t size) override {
Z
Zeng Jinle 已提交
208 209 210 211 212 213 214 215 216 217 218 219
      return new Allocation(nullptr, 0, place_);
    }

    void FreeImpl(Allocation* allocation) override { delete allocation; }

   private:
    platform::Place place_;
  };

  void InitZeroSizeAllocators() {
    std::vector<platform::Place> places;
    places.emplace_back(platform::CPUPlace());
220
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
Z
Zeng Jinle 已提交
221 222 223 224 225 226
    int device_count = platform::GetCUDADeviceCount();
    for (int dev_id = 0; dev_id < device_count; ++dev_id) {
      places.emplace_back(platform::CUDAPlace(dev_id));
    }
    places.emplace_back(platform::CUDAPinnedPlace());
#endif
227 228 229 230 231 232
#ifdef PADDLE_WITH_XPU
    int device_count = platform::GetXPUDeviceCount();
    for (int dev_id = 0; dev_id < device_count; ++dev_id) {
      places.emplace_back(platform::XPUPlace(dev_id));
    }
#endif
Z
Zeng Jinle 已提交
233 234 235

    for (auto& p : places) {
      zero_size_allocators_[p] = std::make_shared<ZeroSizeAllocator>(p);
Y
Yu Yang 已提交
236 237
    }
  }
Z
Zeng Jinle 已提交
238

239 240 241 242 243
  static void CheckAllocThreadSafe(const AllocatorMap& allocators) {
    for (auto& pair : allocators) {
      PADDLE_ENFORCE_EQ(pair.second->IsAllocThreadSafe(), true,
                        platform::errors::InvalidArgument(
                            "Public allocators must be thread safe"));
244
    }
245
  }
246

247 248 249 250
  void CheckAllocThreadSafe() const {
    CheckAllocThreadSafe(allocators_);
    CheckAllocThreadSafe(zero_size_allocators_);
    CheckAllocThreadSafe(system_allocators_);
251 252 253
  }

  void WrapCUDARetryAllocator(size_t retry_time) {
254 255 256 257
    PADDLE_ENFORCE_GT(
        retry_time, 0,
        platform::errors::InvalidArgument(
            "Retry time should be larger than 0, but got %d", retry_time));
258 259 260 261 262 263 264
    for (auto& pair : allocators_) {
      if (platform::is_gpu_place(pair.first)) {
        pair.second = std::make_shared<RetryAllocator>(pair.second, retry_time);
      }
    }
  }

Z
Zeng Jinle 已提交
265
 private:
266 267 268
  AllocatorMap allocators_;
  AllocatorMap zero_size_allocators_;
  AllocatorMap system_allocators_;
269 270
};

Y
Refine  
Yu Yang 已提交
271
// Pimpl. Make interface clean.
272
AllocatorFacade::AllocatorFacade() : m_(new AllocatorFacadePrivate()) {}
273 274 275
// delete m_ may cause core dump when the destructor of python in conflict with
// cpp.
AllocatorFacade::~AllocatorFacade() {}
276 277 278 279 280 281 282

AllocatorFacade& AllocatorFacade::Instance() {
  static AllocatorFacade instance;
  return instance;
}

std::shared_ptr<Allocation> AllocatorFacade::AllocShared(
283 284
    const platform::Place& place, size_t size) {
  return std::shared_ptr<Allocation>(Alloc(place, size));
285 286
}

287 288 289
AllocationPtr AllocatorFacade::Alloc(const platform::Place& place,
                                     size_t size) {
  return m_->GetAllocator(place, size)->Allocate(size);
290 291
}

W
Wilber 已提交
292 293
uint64_t AllocatorFacade::Release(const platform::Place& place) {
  return m_->GetAllocator(place, /* A non-zero num to choose allocator_ */ 1)
294 295 296
      ->Release(place);
}

297 298 299
}  // namespace allocation
}  // namespace memory
}  // namespace paddle