12#include "vecmem/memory/memory_resource.hpp"
30 void*
allocate(std::size_t size, std::size_t alignment);
32 void deallocate(
void* ptr, std::size_t size, std::size_t alignment);
36 memory_resource& m_upstream;
38 const std::size_t m_size;
Implementation of vecmem::contiguous_memory_resource.
Definition contiguous_memory_resource_impl.hpp:20
~contiguous_memory_resource_impl()
Destructor.
Definition contiguous_memory_resource_impl.cpp:33
void deallocate(void *ptr, std::size_t size, std::size_t alignment)
De-allocate a previously allocated memory block.
Definition contiguous_memory_resource_impl.cpp:82
void * allocate(std::size_t size, std::size_t alignment)
Allocate memory from the resource's contiguous memory block.
Definition contiguous_memory_resource_impl.cpp:43
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