vecmem 1.14.0
Loading...
Searching...
No Matches
device_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/sycl/details/memory_resource_base.hpp"
13#include "vecmem/vecmem_sycl_export.hpp"
14
16namespace vecmem::sycl {
17
20
21public:
28
29private:
32
35 virtual void* do_allocate(std::size_t nbytes,
36 std::size_t alignment) override final;
37
39
40}; // device_memory_resource
41
42} // namespace vecmem::sycl
SYCL memory resource base class.
Definition memory_resource_base.hpp:22
Memory resource for a specific SYCL device.
Definition device_memory_resource.hpp:19
VECMEM_SYCL_EXPORT device_memory_resource(const queue_wrapper &queue={})
Constructor on top of a user-provided queue.
virtual VECMEM_SYCL_EXPORT void * do_allocate(std::size_t nbytes, std::size_t alignment) override final
Function performing the memory allocation.
VECMEM_SYCL_EXPORT ~device_memory_resource()
Destructor.
Wrapper class for ::sycl::queue.
Definition queue_wrapper.hpp:23
Namespace holding types that work on/with oneAPI/SYCL.
Definition sycl_builtin_device_atomic_ref.hpp:17
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35