12#include "vecmem/memory/details/memory_resource_base.hpp"
13#include "vecmem/memory/memory_resource.hpp"
14#include "vecmem/vecmem_core_export.hpp"
25class coalescing_memory_resource_impl;
46 std::vector<std::reference_wrapper<memory_resource>>&&
upstreams);
70 virtual void*
do_allocate(std::size_t, std::size_t)
override final;
74 std::size_t)
override final;
79 std::unique_ptr<details::coalescing_memory_resource_impl> m_impl;
This memory resource tries to allocate with several upstream resources and returns the first succesfu...
Definition coalescing_memory_resource.hpp:32
VECMEM_CORE_EXPORT coalescing_memory_resource & operator=(coalescing_memory_resource &&rhs)
Move assignment operator.
VECMEM_CORE_EXPORT coalescing_memory_resource(coalescing_memory_resource &&parent)
Move constructor.
VECMEM_CORE_EXPORT ~coalescing_memory_resource()
Destructor.
coalescing_memory_resource & operator=(const coalescing_memory_resource &)=delete
Disallow copying the memory resource.
coalescing_memory_resource(const coalescing_memory_resource &)=delete
Disallow copying the memory resource.
virtual VECMEM_CORE_EXPORT void * do_allocate(std::size_t, std::size_t) override final
Allocate memory with one of the underlying resources.
virtual VECMEM_CORE_EXPORT void do_deallocate(void *p, std::size_t, std::size_t) override final
De-allocate a previously allocated memory block.
Base class for implementations of the vecmem::memory_resource interface.
Definition memory_resource_base.hpp:25
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35