vecmem 1.14.0
Loading...
Searching...
No Matches
copy.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021-2024 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// VecMem include(s).
11#include "vecmem/utils/copy.hpp"
12#include "vecmem/utils/sycl/queue_wrapper.hpp"
13#include "vecmem/vecmem_sycl_export.hpp"
14
15// System include(s).
16#include <memory>
17
18namespace vecmem::sycl {
19namespace details {
21struct copy_data;
22} // namespace details
23
31class copy : public vecmem::copy {
32
33public:
36 copy(const queue_wrapper& queue);
40
41protected:
44 virtual void do_copy(std::size_t size, const void* from, void* to,
45 type::copy_type cptype) const override final;
48 virtual void do_memset(std::size_t size, void* ptr,
49 int value) const override final;
50
51private:
53 std::unique_ptr<details::copy_data> m_data;
54
55}; // class copy
56
57} // namespace vecmem::sycl
Class implementing (synchronous) host <-> device memory copies.
Definition copy.hpp:41
data::vector_buffer< std::remove_cv_t< TYPE > > to(const data::vector_view< TYPE > &data, memory_resource &resource, type::copy_type cptype=type::unknown) const
Copy a 1-dimensional vector to the specified memory resource.
Definition copy.ipp:66
Specialisation of vecmem::copy for SYCL.
Definition copy.hpp:31
virtual VECMEM_SYCL_EXPORT void do_memset(std::size_t size, void *ptr, int value) const override final
Fill a memory area using SYCL.
VECMEM_SYCL_EXPORT ~copy()
Destructor.
VECMEM_SYCL_EXPORT copy(const queue_wrapper &queue)
Constructor on top of a user-provided queue.
virtual VECMEM_SYCL_EXPORT void do_copy(std::size_t size, const void *from, void *to, type::copy_type cptype) const override final
Perform a memory copy using SYCL.
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