vecmem 1.14.0
|
Memory resource pooling allocations of various sizes. More...
#include <vecmem/memory/pool_memory_resource.hpp>
Classes | |
struct | options |
Runtime options for vecmem::pool_memory_resource . More... | |
Public Member Functions | |
VECMEM_CORE_EXPORT | pool_memory_resource (memory_resource &upstream, const options &opts=options{}) |
Create a pool memory resource with the given options. | |
VECMEM_CORE_EXPORT | pool_memory_resource (pool_memory_resource &&parent) |
Move constructor. | |
pool_memory_resource (const pool_memory_resource &)=delete | |
Disallow copying the memory resource. | |
VECMEM_CORE_EXPORT | ~pool_memory_resource () |
Destructor, freeing all allocations. | |
VECMEM_CORE_EXPORT pool_memory_resource & | operator= (pool_memory_resource &&rhs) |
Move assignment operator. | |
pool_memory_resource & | operator= (const pool_memory_resource &)=delete |
Disallow copying the memory resource. | |
Protected Member Functions | |
Function(s) implementing @c vecmem::memory_resource | |
virtual VECMEM_CORE_EXPORT bool | do_is_equal (const memory_resource &other) const noexcept |
Compare the equality of *this memory resource with another. | |
Private Member Functions | |
Function(s) implementing @c vecmem::memory_resource | |
virtual VECMEM_CORE_EXPORT void * | do_allocate (std::size_t, std::size_t) override final |
Allocate a blob of memory. | |
virtual VECMEM_CORE_EXPORT void | do_deallocate (void *p, std::size_t, std::size_t) override final |
De-allocate a previously allocated memory blob. | |
Memory resource pooling allocations of various sizes.
This is a "downstream" memory resource allowing for pooling and caching allocations from an upstream resource.
The code is a copy of thrust::mr::disjoint_unsynchronized_pool_resource
, giving it a standard std::pmr::memory_resource
interface. (And simplifying it in some places a little.)
The original code of thrust::mr::disjoint_unsynchronized_pool_resource
is licensed under the Apache License, Version 2.0, which is available at: http://www.apache.org/licenses/LICENSE-2.0
vecmem::pool_memory_resource::pool_memory_resource | ( | memory_resource & | upstream, |
const options & | opts = options{} |
||
) |
Create a pool memory resource with the given options.
upstream | The upstream memory resource to use for allocations |
opts | The options to use for the pool memory resource |
|
protectedvirtualnoexceptinherited |
Compare the equality of *this
memory resource with another.
other | The other memory resource to compare with |
true
if the two memory resources are equal, false
otherwise Reimplemented in vecmem::identity_memory_resource, vecmem::host_memory_resource, and vecmem::terminal_memory_resource.