conditional_allocator.h 1.9 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// 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
#include <functional>
#include <utility>
#include <vector>
#include "paddle/fluid/memory/allocation/allocator.h"

namespace paddle {
namespace memory {
namespace allocation {

Y
Yu Yang 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
// A composite allocator who will dispatch the allocation request by registered
// condition.
//
// For example:
//
// auto* cond_allocator = new ConditionalAllocator();
// cond_allocator->AddAllocator([](size_t size, Attr attr){
//   // if size > 10
//   return size > 10;
// }, allocator_a).AddAllocator([](size_t size, Attr attr){
//   // elif attr is kDefault
//   return attr == kDefault;
// }, allocator_b).AddAllocator([](size_t size, Attr attr){
//   // else
//   return true;
// }, allocator_c);
Y
Yu Yang 已提交
41
class ConditionalAllocator : public Allocator {
Y
Yu Yang 已提交
42 43 44
 public:
  ConditionalAllocator() = default;

Y
Yu Yang 已提交
45 46 47
  ConditionalAllocator& AddAllocator(std::function<bool(size_t, Attr)> func,
                                     std::shared_ptr<Allocator> allocator);

Y
Yu Yang 已提交
48 49
  bool IsAllocThreadSafe() const override;

Y
Yu Yang 已提交
50 51 52
 protected:
  Allocation* AllocateImpl(size_t size, Allocator::Attr attr) override;

Y
Yu Yang 已提交
53
 private:
Y
Yu Yang 已提交
54 55 56
  using AllocatorWithCond =
      std::pair<std::function<bool(size_t, Attr)>, std::shared_ptr<Allocator>>;
  std::vector<AllocatorWithCond> underlying_allocators_;
Y
Yu Yang 已提交
57 58 59 60 61
};

}  // namespace allocation
}  // namespace memory
}  // namespace paddle