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_cuda_export.hpp"
14
15namespace vecmem::cuda {
16
24class host_memory_resource final : public memory_resource {
25
26public:
33
34private:
37
40 virtual void* do_allocate(std::size_t, std::size_t) override final;
43 virtual void do_deallocate(void* p, std::size_t,
44 std::size_t) override final;
47 virtual bool do_is_equal(
48 const memory_resource& other) const noexcept override final;
49
51
52}; // class host_memory_resource
53
54} // namespace vecmem::cuda
Memory resource that wraps page-locked CUDA host allocation.
Definition host_memory_resource.hpp:24
virtual VECMEM_CUDA_EXPORT bool do_is_equal(const memory_resource &other) const noexcept override final
Compares *this for equality with other.
Definition host_memory_resource.cpp:54
virtual VECMEM_CUDA_EXPORT void * do_allocate(std::size_t, std::size_t) override final
Allocate page-locked host memory.
Definition host_memory_resource.cpp:28
virtual VECMEM_CUDA_EXPORT void do_deallocate(void *p, std::size_t, std::size_t) override final
De-allocate a previously allocated page-locked memory block.
Definition host_memory_resource.cpp:41
VECMEM_CUDA_EXPORT host_memory_resource()
Default constructor.
VECMEM_CUDA_EXPORT ~host_memory_resource()
Destructor.
Namespace holding types that work on/with CUDA.
Definition cuda_device_atomic_ref.hpp:19
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35