vecmem 1.14.0
Loading...
Searching...
No Matches
host_memory_resource.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021-2023 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8
9#pragma once
10
11// Local include(s).
12#include "vecmem/memory/memory_resource.hpp"
13#include "vecmem/vecmem_hip_export.hpp"
14
15namespace vecmem::hip {
16
18class host_memory_resource final : public memory_resource {
19
20public:
27
28private:
31
34 virtual void* do_allocate(std::size_t nbytes,
35 std::size_t alignment) override final;
36
39 virtual void do_deallocate(void* ptr, std::size_t nbytes,
40 std::size_t alignment) override final;
41
44 virtual bool do_is_equal(
45 const memory_resource& other) const noexcept override final;
46
48
49}; // class host_memory_resource
50
51} // namespace vecmem::hip
Memory resource for HIP shared host/device memory.
Definition host_memory_resource.hpp:18
virtual VECMEM_HIP_EXPORT void do_deallocate(void *ptr, std::size_t nbytes, std::size_t alignment) override final
Function performing the memory de-allocation.
Definition host_memory_resource.cpp:40
VECMEM_HIP_EXPORT ~host_memory_resource()
Destructor.
virtual VECMEM_HIP_EXPORT void * do_allocate(std::size_t nbytes, std::size_t alignment) override final
Function performing the memory allocation.
Definition host_memory_resource.cpp:27
VECMEM_HIP_EXPORT host_memory_resource()
Default constructor.
virtual VECMEM_HIP_EXPORT bool do_is_equal(const memory_resource &other) const noexcept override final
Function comparing two memory resource instances.
Definition host_memory_resource.cpp:53
Namespace holding types that work on/with ROCm/HIP.
Definition hip_device_atomic_ref.hpp:25
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35