8 #ifndef BLACKCAT_ALLOCATORS_ALLOCATOR_FORWADER_H_ 9 #define BLACKCAT_ALLOCATORS_ALLOCATOR_FORWADER_H_ 14 #include <thrust/device_ptr.h> 15 #include <thrust/device_allocator.h> 19 namespace allocators {
21 template<
class Allocator>
37 typename traits::propagate_on_container_copy_assignment;
40 typename traits::propagate_on_container_move_assignment;
43 typename traits::propagate_on_container_swap;
45 template<
class AltValueType>
48 typename traits::template rebind_alloc<AltValueType>>;
55 template<
class... Args>
58 template<
class AltAllocator>
60 m_allocator(other.m_allocator) {}
64 return traits::select_on_container_copy_construction(m_allocator);
68 return m_allocator.allocate(size);
72 m_allocator.deallocate(ptr, size);
75 template<
class... Args >
77 traits::construct(m_allocator, ptr, std::forward<Args>(args)...);
81 traits::destroy(m_allocator, ptr);
84 template<
class AltAllocator>
86 return m_allocator ==
other;
89 template<
class AltAllocator>
91 return m_allocator !=
other;
97 template<
class ValueType,
class Allocator>
100 using traits = thrust::device_allocator<ValueType>;
113 typename traits::propagate_on_container_copy_assignment;
116 typename traits::propagate_on_container_move_assignment;
119 typename traits::propagate_on_container_swap;
121 template<
class AltValueType>
124 typename traits::template rebind_alloc<AltValueType>>;
133 template<
class... Args>
135 m_allocator(args...) {}
138 m_allocator(other.m_allocator) {}
141 m_allocator(std::move(
other.m_allocator)) {}
144 m_allocator = other.m_allocator;
149 m_allocator = std::move(
other.m_allocator);
153 template<
class AltVt,
class AltAllocator>
155 m_allocator(other.m_allocator) {}
159 return traits::select_on_container_copy_construction(m_allocator);
163 return pointer(m_allocator.allocate(size));
168 m_allocator.deallocate(vt_ptr, size);
171 template<
class... Args >
173 traits::construct(m_allocator, ptr.get(), std::forward<Args>(args)...);
177 traits::destroy(m_allocator, ptr.get());
180 template<
class AltAllocator>
182 return m_allocator ==
other;
185 template<
class AltAllocator>
187 return m_allocator !=
other;
191 template<
class Allocator>
197 template<
class Vt,
class Allocator>
203 template<
class Allocator>
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
Vt value_type
Definition: allocator_forwarder.h:199
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
typename traits::size_type size_type
Definition: allocator_forwarder.h:33
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
typename traits::pointer pointer
Definition: allocator_forwarder.h:27
typename traits::void_pointer void_pointer
Definition: allocator_forwarder.h:29
BCHOT self_type & operator=(const Expression_Base< Xpr > ¶m)
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
typename traits::system_tag system_tag
Definition: allocator_forwarder.h:26
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
typename traits::value_type value_type
Definition: allocator_forwarder.h:25
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
const value_type & const_reference
Definition: allocator_forwarder.h:31
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
value_type & reference
Definition: allocator_forwarder.h:30
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