BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
recycle_allocator.h
Go to the documentation of this file.
1 /*
2  * RecyclerAllocator.h
3  *
4  * Created on: Sep 21, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCATTENSORS_ALLOCATORS_FANCY_H_
9 #define BLACKCATTENSORS_ALLOCATORS_FANCY_H_
10 
11 #include "basic_allocators.h"
12 #include <unordered_map>
13 #include <vector>
14 #include <mutex>
15 
16 namespace bc {
17 namespace allocators {
18 
19 //TODO make friend class and private members
21 {
22  template<class SystemTag>
23  static auto& get_recycler(SystemTag=SystemTag()) {
24  static std::unordered_map<bc::size_t, std::vector<Byte*>> m_recycler;
25  return m_recycler;
26  }
27 
28  template<class SystemTag>
29  static auto& get_locker(SystemTag=SystemTag()) {
30  static std::mutex m_locker;
31  return m_locker;
32  }
33 
34  template<class SystemTag>
35  static void clear_recycler(SystemTag system=SystemTag()) {
36  std::lock_guard<std::mutex> locker(get_locker(system));
38 
39  auto& recycler = get_recycler(system);
40  for (const auto& kv : recycler) {
41  std::size_t ptr_sz = kv.first;
42  const std::vector<Byte*>& ptrs = kv.second;
43 
44  for (auto ptr : ptrs)
45  allocator.deallocate(ptr, ptr_sz);
46  }
47  recycler.clear();
48  }
49 
50 };
51 
52 
53 template<
54  class T,
55  class SystemTag,
56  class AlternateAllocator=Allocator<Byte, SystemTag>>
58 
59  using system_tag = SystemTag; //BC tag
60  using value_type = T;
61  using pointer = value_type*;
62  using const_pointer = const value_type*;
64  using propagate_on_container_copy_assignment = std::false_type;
65  using propagate_on_container_move_assignment = std::false_type;
66  using propagate_on_container_swap = std::false_type;
67  using is_always_equal = std::true_type;
68 
69  static_assert(std::is_same<Byte, typename AlternateAllocator::value_type>::value,
70  "AlternateAllocator of Recycle_Allocator must have Byte value_type");
71 
72  static_assert(std::is_same<SystemTag, typename AlternateAllocator::system_tag>::value,
73  "AlternateAllocator of Recycle_Allocator must have same system_tag");
74 
75 private:
76 
77  AlternateAllocator m_allocator;
78 
79  static auto& get_recycler() {
81  }
82  static auto& get_locker() {
84  }
85 
86 public:
87 
88  template<class altT>
89  struct rebind {
91  };
92 
93  Recycle_Allocator()=default;
94  Recycle_Allocator(const Recycle_Allocator&)=default;
98 
99 
100  template<class U>
102 
103 
104  T* allocate(bc::size_t size) {
105  if (size == 0) { return nullptr; }
106 
107  std::lock_guard<std::mutex> lck(get_locker());
108  size *= sizeof(value_type);
109 
110  auto& recycler = get_recycler();
111 
112  if (recycler.find(size) != recycler.end() && !recycler[size].empty()) {
113  T* data = reinterpret_cast<value_type*>(recycler[size].back());
114  recycler[size].pop_back();
115  return data;
116  } else {
117  return reinterpret_cast<value_type*>(m_allocator.allocate(size));
118  }
119  }
120 
121  void deallocate(T* ptr, bc::size_t size) {
122  if (size == 0 || ptr==nullptr) { return; }
123  std::lock_guard<std::mutex> lck(get_locker());
124  size *= sizeof(value_type);
125  get_recycler()[size].push_back(reinterpret_cast<Byte*>(ptr));
126  }
127 
128  void clear_cache() {
129  std::lock_guard<std::mutex> lck(get_locker());
130  for (auto kv : get_recycler()) {
131  for (Byte* ptr: kv.second) {
132  m_allocator.deallocate(ptr, kv.first);
133  }
134  }
135  }
136 
137  template<class U>
138  constexpr bool operator == (
140  return true;
141  }
142  template<class U>
143  constexpr bool operator != (
145  return false;
146  }
147 };
148 
149 }
150 }
151 
152 
153 
154 
155 #endif /* RECYCLERALLOCATOR_H_ */
void deallocate(T *ptr, bc::size_t size)
Definition: recycle_allocator.h:121
SystemTag system_tag
Definition: recycle_allocator.h:59
static auto & get_locker(SystemTag=SystemTag())
Definition: recycle_allocator.h:29
BCHOT self_type & operator=(const Expression_Base< Xpr > &param)
Definition: tensor_operations.h:19
int size_t
Definition: common.h:283
std::false_type propagate_on_container_copy_assignment
Definition: recycle_allocator.h:64
Definition: recycle_allocator.h:89
static void clear_recycler(SystemTag system=SystemTag())
Definition: recycle_allocator.h:35
Definition: allocators.h:20
const value_type * const_pointer
Definition: recycle_allocator.h:62
ValueType value_type
Definition: recycle_allocator.h:60
static auto & get_recycler(SystemTag=SystemTag())
Definition: recycle_allocator.h:23
std::false_type propagate_on_container_swap
Definition: recycle_allocator.h:66
Definition: allocators.h:17
bc::size_t size_type
Definition: recycle_allocator.h:63
std::false_type propagate_on_container_move_assignment
Definition: recycle_allocator.h:65
value_type * pointer
Definition: recycle_allocator.h:61
std::true_type is_always_equal
Definition: recycle_allocator.h:67
auto operator==(const Expression_Base< Xpr > &param) const
Definition: expression_operations.h:38
void clear_cache()
Definition: recycle_allocator.h:128
Recycle_Allocator(const Recycle_Allocator< U, SystemTag, AlternateAllocator > &other)
Definition: recycle_allocator.h:101
T * allocate(bc::size_t size)
Definition: recycle_allocator.h:104
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Definition: recycle_allocator.h:20
Definition: recycle_allocator.h:57