BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
allocator_forwarder.h
Go to the documentation of this file.
1 /*
2  * Allocator_Wrapper.h
3  *
4  * Created on: Jan 20, 2020
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_ALLOCATORS_ALLOCATOR_FORWADER_H_
9 #define BLACKCAT_ALLOCATORS_ALLOCATOR_FORWADER_H_
10 
11 #include "allocator_traits.h"
12 
13 #ifdef __CUDACC__
14 #include <thrust/device_ptr.h>
15 #include <thrust/device_allocator.h>
16 #endif
17 
18 namespace bc {
19 namespace allocators {
20 
21 template<class Allocator>
23 
25  using value_type = typename traits::value_type;
26  using system_tag = typename traits::system_tag;
27  using pointer = typename traits::pointer;
28  using const_pointer = typename traits::const_pointer;
29  using void_pointer = typename traits::void_pointer;
31  using const_reference = const value_type&;
32  using difference_type = typename traits::difference_type;
33  using size_type = typename traits::size_type;
34  using is_always_equal = typename traits::is_always_equal;
35 
37  typename traits::propagate_on_container_copy_assignment;
38 
40  typename traits::propagate_on_container_move_assignment;
41 
43  typename traits::propagate_on_container_swap;
44 
45  template<class AltValueType>
46  struct rebind {
47  using other = Allocator_Forwarder<
48  typename traits::template rebind_alloc<AltValueType>>;
49  };
50 
51 private:
52  Allocator m_allocator;
53 public:
54 
55  template<class... Args>
56  Allocator_Forwarder(Args&&... args): m_allocator(args...) {}
57 
58  template<class AltAllocator>
60  m_allocator(other.m_allocator) {}
61 
62 
64  return traits::select_on_container_copy_construction(m_allocator);
65  }
66 
68  return m_allocator.allocate(size);
69  }
70 
71  void deallocate(pointer ptr, size_type size) {
72  m_allocator.deallocate(ptr, size);
73  }
74 
75  template<class... Args >
76  void construct(pointer ptr, Args&&... args ) {
77  traits::construct(m_allocator, ptr, std::forward<Args>(args)...);
78  }
79 
80  void destroy(pointer ptr) {
81  traits::destroy(m_allocator, ptr);
82  }
83 
84  template<class AltAllocator>
85  bool operator == (const AltAllocator& other) {
86  return m_allocator == other;
87  }
88 
89  template<class AltAllocator>
90  bool operator != (const AltAllocator& other) {
91  return m_allocator != other;
92  }
93 };
94 
95 #ifdef __CUDACC__
96 
97 template<class ValueType, class Allocator>
99 
100  using traits = thrust::device_allocator<ValueType>;
101  using value_type = typename traits::value_type;
103  using pointer = typename traits::pointer;
104  using const_pointer = const pointer;
105  using void_pointer = typename traits::void_pointer;
106  using reference = typename traits::reference;
107  using const_reference = typename traits::const_reference;
108  using difference_type = typename traits::difference_type;
109  using size_type = typename traits::size_type;
111 
113  typename traits::propagate_on_container_copy_assignment;
114 
116  typename traits::propagate_on_container_move_assignment;
117 
119  typename traits::propagate_on_container_swap;
120 
121  template<class AltValueType>
122  struct rebind {
123  using other = Thrust_Allocator_Forwarder<AltValueType,
124  typename traits::template rebind_alloc<AltValueType>>;
125  };
126 
127 private:
128  Allocator m_allocator;
129 public:
130 
132 
133  template<class... Args>
134  Thrust_Allocator_Forwarder(const Args&... args):
135  m_allocator(args...) {}
136 
138  m_allocator(other.m_allocator) {}
139 
141  m_allocator(std::move(other.m_allocator)) {}
142 
144  m_allocator = other.m_allocator;
145  return *this;
146  }
147 
149  m_allocator = std::move(other.m_allocator);
150  return *this;
151  }
152 
153  template<class AltVt, class AltAllocator>
155  m_allocator(other.m_allocator) {}
156 
157 
159  return traits::select_on_container_copy_construction(m_allocator);
160  }
161 
163  return pointer(m_allocator.allocate(size));
164  }
165 
166  void deallocate(pointer ptr, size_type size) {
167  value_type* vt_ptr = ptr.get();
168  m_allocator.deallocate(vt_ptr, size);
169  }
170 
171  template<class... Args >
172  void construct(pointer ptr, Args&&... args ) {
173  traits::construct(m_allocator, ptr.get(), std::forward<Args>(args)...);
174  }
175 
176  void destroy(pointer ptr) {
177  traits::destroy(m_allocator, ptr.get());
178  }
179 
180  template<class AltAllocator>
181  bool operator == (const AltAllocator& other) {
182  return m_allocator == other;
183  }
184 
185  template<class AltAllocator>
186  bool operator != (const AltAllocator& other) {
187  return m_allocator != other;
188  }
189 };
190 
191 template<class Allocator>
195 };
196 
197 template<class Vt, class Allocator>
199  using value_type = Vt;
201 };
202 
203 template<class Allocator>
205 
206 
207 
208 //template<class Vt, class Allocator>
209 //struct Thrust_Allocator_Forwarder<Vt, Thrust_Allocator_Forwarder<Vt, Allocator>> {
210 // Thrust_Allocator_Forwarder() {
211 // static_assert(false, "Invalid type");
212 // }
213 //};
214 
215 #endif
216 
217 }
218 }
219 
220 #endif /* ALLOCATOR_WRAPPER_H_ */
typename traits::is_always_equal is_always_equal
Definition: allocator_forwarder.h:34
const pointer const_pointer
Definition: allocator_forwarder.h:104
Thrust_Allocator_Forwarder(Thrust_Allocator_Forwarder &&other)
Definition: allocator_forwarder.h:140
Definition: allocator_forwarder.h:46
Allocator_Forwarder(Args &&... args)
Definition: allocator_forwarder.h:56
bool operator==(const AltAllocator &other)
Definition: allocator_forwarder.h:85
typename traits::value_type value_type
Definition: allocator_forwarder.h:101
Thrust_Allocator_Forwarder(const Thrust_Allocator_Forwarder &other)
Definition: allocator_forwarder.h:137
typename traits::propagate_on_container_move_assignment propagate_on_container_move_assignment
Definition: allocator_forwarder.h:116
bool operator!=(const AltAllocator &other)
Definition: allocator_forwarder.h:90
Definition: allocator_forwarder.h:122
typename bc::allocator_traits< Allocator >::value_type value_type
Definition: allocator_forwarder.h:193
void destroy(pointer ptr)
Definition: allocator_forwarder.h:176
pointer allocate(size_type size)
Definition: allocator_forwarder.h:67
typename traits::pointer pointer
Definition: allocator_forwarder.h:103
bc::traits::conditional_detected_t< bc::traits::query_system_tag, Allocator, host_tag > system_tag
Definition: allocator_traits.h:23
Thrust_Allocator_Forwarder()
Definition: allocator_forwarder.h:131
auto select_on_container_copy_construction()
Definition: allocator_forwarder.h:158
Definition: allocator_forwarder.h:192
typename traits::propagate_on_container_swap propagate_on_container_swap
Definition: allocator_forwarder.h:119
Definition: common.h:32
BCHOT self_type & operator=(const Expression_Base< Xpr > &param)
Definition: tensor_operations.h:19
Definition: allocator_traits.h:20
typename traits::difference_type difference_type
Definition: allocator_forwarder.h:108
Allocator_Forwarder(const Allocator_Forwarder< AltAllocator > &other)
Definition: allocator_forwarder.h:59
typename traits::difference_type difference_type
Definition: allocator_forwarder.h:32
Definition: allocators.h:20
void construct(pointer ptr, Args &&... args)
Definition: allocator_forwarder.h:172
Thrust_Allocator_Forwarder(const Args &... args)
Definition: allocator_forwarder.h:134
void deallocate(pointer ptr, size_type size)
Definition: allocator_forwarder.h:166
typename traits::propagate_on_container_copy_assignment propagate_on_container_copy_assignment
Definition: allocator_forwarder.h:37
void destroy(pointer ptr)
Definition: allocator_forwarder.h:80
typename traits::propagate_on_container_move_assignment propagate_on_container_move_assignment
Definition: allocator_forwarder.h:40
Definition: allocator_forwarder.h:22
typename traits::reference reference
Definition: allocator_forwarder.h:106
typename traits::void_pointer void_pointer
Definition: allocator_forwarder.h:105
Definition: allocator_forwarder.h:98
Thrust_Allocator_Forwarder(const Thrust_Allocator_Forwarder< AltVt, AltAllocator > &other)
Definition: allocator_forwarder.h:154
pointer allocate(size_type size)
Definition: allocator_forwarder.h:162
typename traits::size_type size_type
Definition: allocator_forwarder.h:109
typename traits::propagate_on_container_copy_assignment propagate_on_container_copy_assignment
Definition: allocator_forwarder.h:113
auto select_on_container_copy_construction()
Definition: allocator_forwarder.h:63
typename traits::const_pointer const_pointer
Definition: allocator_forwarder.h:28
void construct(pointer ptr, Args &&... args)
Definition: allocator_forwarder.h:76
Allocator_Forwarder< typename traits::template rebind_alloc< AltValueType > > other
Definition: allocator_forwarder.h:48
typename traits::propagate_on_container_swap propagate_on_container_swap
Definition: allocator_forwarder.h:43
typename allocator_to_thrust_allocator< Allocator >::type allocator_to_thrust_allocator_t
Definition: allocator_forwarder.h:204
typename bc::allocator_traits< Allocator >::is_always_equal is_always_equal
Definition: allocator_forwarder.h:110
typename traits::const_reference const_reference
Definition: allocator_forwarder.h:107
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
void deallocate(pointer ptr, size_type size)
Definition: allocator_forwarder.h:71
thrust::device_allocator< ValueType > traits
Definition: allocator_forwarder.h:100