vecmem 1.14.0
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
vecmem::pool_memory_resource::options Struct Reference

Runtime options for vecmem::pool_memory_resource. More...

#include <vecmem/memory/pool_memory_resource.hpp>

Public Member Functions

 options ()
 Default constructor.
 

Public Attributes

std::size_t min_blocks_per_chunk = 16
 The minimal number of blocks, i.e.
 
std::size_t min_bytes_per_chunk = 1024
 The minimal number of bytes in a single chunk allocated from upstream.
 
std::size_t max_blocks_per_chunk = static_cast<std::size_t>(1) << 20
 The maximal number of blocks, i.e.
 
std::size_t max_bytes_per_chunk = static_cast<std::size_t>(1) << 30
 The maximal number of bytes in a single chunk allocated from upstream.
 
std::size_t smallest_block_size = alignof(std::max_align_t)
 The size of blocks in the smallest pool covered by the pool resource.
 
std::size_t largest_block_size = static_cast<std::size_t>(1) << 20
 The size of blocks in the largest pool covered by the pool resource.
 
std::size_t alignment = alignof(std::max_align_t)
 The alignment of all blocks in internal pools of the pool resource.
 
bool cache_oversized = true
 Decides whether oversized and overaligned blocks are cached for later use, or immediately return it to the upstream resource.
 
std::size_t cached_size_cutoff_factor = 16
 The size factor at which a cached allocation is considered too ridiculously oversized to use to fulfill an allocation request.
 
std::size_t cached_alignment_cutoff_factor = 16
 The alignment factor at which a cached allocation is considered too ridiculously overaligned to use to fulfill an allocation request.
 

Detailed Description

Runtime options for vecmem::pool_memory_resource.

Constructor & Destructor Documentation

◆ options()

vecmem::pool_memory_resource::options::options ( )
default

Default constructor.

It is necessary to work around issue: https://github.com/llvm/llvm-project/issues/36032

Member Data Documentation

◆ alignment

std::size_t vecmem::pool_memory_resource::options::alignment = alignof(std::max_align_t)

The alignment of all blocks in internal pools of the pool resource.

All allocation requests above this alignment will be considered oversized, allocated directly from upstream (and not from a pool), and cached only if cache_oversized is true.

◆ cached_alignment_cutoff_factor

std::size_t vecmem::pool_memory_resource::options::cached_alignment_cutoff_factor = 16

The alignment factor at which a cached allocation is considered too ridiculously overaligned to use to fulfill an allocation request.

For instance: the user requests an allocation aligned to 32 bytes. A block aligned to 1024 bytes is cached. If cached_size_cutoff_factor is 32 or less, this block will be considered too overaligned for that allocation request.

◆ cached_size_cutoff_factor

std::size_t vecmem::pool_memory_resource::options::cached_size_cutoff_factor = 16

The size factor at which a cached allocation is considered too ridiculously oversized to use to fulfill an allocation request.

For instance: the user requests an allocation of size 1024 bytes. A block of size 32 * 1024 bytes is cached. If cached_size_cutoff_factor is 32 or less, this block will be considered too big for that allocation request.

◆ largest_block_size

std::size_t vecmem::pool_memory_resource::options::largest_block_size = static_cast<std::size_t>(1) << 20

The size of blocks in the largest pool covered by the pool resource.

All allocation requests above this size will be considered oversized, allocated directly from upstream (and not from a pool), and cached only if cache_oversized is true.

◆ max_blocks_per_chunk

std::size_t vecmem::pool_memory_resource::options::max_blocks_per_chunk = static_cast<std::size_t>(1) << 20

The maximal number of blocks, i.e.

pieces of memory handed off to the user from a pool of a given size, in a single chunk allocated from upstream.

◆ min_blocks_per_chunk

std::size_t vecmem::pool_memory_resource::options::min_blocks_per_chunk = 16

The minimal number of blocks, i.e.

pieces of memory handed off to the user from a pool of a given size, in a single chunk allocated from upstream.

◆ smallest_block_size

std::size_t vecmem::pool_memory_resource::options::smallest_block_size = alignof(std::max_align_t)

The size of blocks in the smallest pool covered by the pool resource.

All allocation requests below this size will be rounded up to this size.


The documentation for this struct was generated from the following files: