vecmem 1.14.0
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
Public Member Functions | List of all members
vecmem::host_memory_resource Class Referencefinal

Memory resource which wraps standard library memory allocation calls. More...

#include <vecmem/memory/host_memory_resource.hpp>

Inheritance diagram for vecmem::host_memory_resource:
vecmem::details::memory_resource_base

Public Member Functions

VECMEM_CORE_EXPORT host_memory_resource ()
 Default constructor.
 
VECMEM_CORE_EXPORT ~host_memory_resource ()
 Destructor.
 

Protected Member Functions

Function(s) implementing @c vecmem::memory_resource
virtual VECMEM_CORE_EXPORT voiddo_allocate (std::size_t size, std::size_t alignment) override final
 Allocate standard host memory.
 
virtual VECMEM_CORE_EXPORT void do_deallocate (void *p, std::size_t size, std::size_t alignment) override final
 De-allocate a block of previously allocated memory.
 
virtual VECMEM_CORE_EXPORT bool do_is_equal (const memory_resource &other) const noexcept override final
 Compares *this for equality with other.
 

Detailed Description

Memory resource which wraps standard library memory allocation calls.

This is probably the simplest memory resource you can possibly write. It is a terminal resource which does nothing but wrap std::aligned_alloc and std::free. It is state-free (on the relevant levels of abstraction).

Member Function Documentation

◆ do_is_equal()

bool vecmem::host_memory_resource::do_is_equal ( const memory_resource &  other) const
finaloverrideprotectedvirtualnoexcept

Compares *this for equality with other.

Reimplemented from vecmem::details::memory_resource_base.


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