12#include "vecmem/memory/memory_resource.hpp"
16#include <unordered_map>
32 void*
allocate(std::size_t, std::size_t);
38 memory_resource& m_upstream;
40 std::unordered_map<void*, std::pair<std::size_t, std::size_t>>
Implementation for vecmem::details::debug_memory_resource.
Definition debug_memory_resource_impl.hpp:21
void deallocate(void *p, std::size_t, std::size_t)
Deallocate previously allocated memory.
Definition debug_memory_resource_impl.cpp:69
void * allocate(std::size_t, std::size_t)
Allocate memory with a chosen memory resource.
Definition debug_memory_resource_impl.cpp:22
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