vecmem 1.14.0
Loading...
Searching...
No Matches
coalescing_memory_resource_impl.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021-2023 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8
9#pragma once
10
11// Local include(s).
12#include "vecmem/memory/memory_resource.hpp"
13
14// System include(s).
15#include <functional>
16#include <unordered_map>
17#include <vector>
18
19namespace vecmem::details {
20
23
24public:
27 std::vector<std::reference_wrapper<memory_resource>>&& upstreams);
28
30 void* allocate(std::size_t size, std::size_t align);
32 void deallocate(void* p, std::size_t size, std::size_t align);
33
34private:
36 const std::vector<std::reference_wrapper<memory_resource>> m_upstreams;
37
39 std::unordered_map<void*, std::reference_wrapper<memory_resource>>
40 m_allocations;
41
42}; // class coalescing_memory_resource_impl
43
44} // namespace vecmem::details
Implementation for vecmem::details::coalescing_memory_resource.
Definition coalescing_memory_resource_impl.hpp:22
void deallocate(void *p, std::size_t size, std::size_t align)
Deallocate previously allocated memory.
Definition coalescing_memory_resource_impl.cpp:56
void * allocate(std::size_t size, std::size_t align)
Allocate memory with a chosen memory resource.
Definition coalescing_memory_resource_impl.cpp:21
Namespace for types that should not be used directly by clients.
Definition array.hpp:23
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35