8 #ifndef BLACKCATTENSORS_ALLOCATORS_FANCY_H_ 9 #define BLACKCATTENSORS_ALLOCATORS_FANCY_H_ 12 #include <unordered_map> 17 namespace allocators {
22 template<
class SystemTag>
24 static std::unordered_map<bc::size_t, std::vector<Byte*>> m_recycler;
28 template<
class SystemTag>
30 static std::mutex m_locker;
34 template<
class SystemTag>
36 std::lock_guard<std::mutex> locker(
get_locker(system));
40 for (
const auto& kv : recycler) {
42 const std::vector<Byte*>& ptrs = kv.second;
45 allocator.deallocate(ptr, ptr_sz);
69 static_assert(std::is_same<Byte, typename AlternateAllocator::value_type>::value,
70 "AlternateAllocator of Recycle_Allocator must have Byte value_type");
72 static_assert(std::is_same<SystemTag, typename AlternateAllocator::system_tag>::value,
73 "AlternateAllocator of Recycle_Allocator must have same system_tag");
77 AlternateAllocator m_allocator;
105 if (size == 0) {
return nullptr; }
107 std::lock_guard<std::mutex> lck(
get_locker());
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();
117 return reinterpret_cast<value_type*
>(m_allocator.allocate(size));
122 if (size == 0 || ptr==
nullptr) {
return; }
123 std::lock_guard<std::mutex> lck(
get_locker());
125 get_recycler()[size].push_back(reinterpret_cast<Byte*>(ptr));
129 std::lock_guard<std::mutex> lck(
get_locker());
131 for (
Byte* ptr: kv.second) {
132 m_allocator.deallocate(ptr, kv.first);
143 constexpr
bool operator != (
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 > ¶m)
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 > ¶m) 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