vecmem 1.18.0
Loading...
Searching...
No Matches
async_copy.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2025 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/hip/stream_wrapper.hpp"
13#include "vecmem/vecmem_hip_export.hpp"
14
15namespace vecmem::hip {
16
27class async_copy : public vecmem::copy {
28
29public:
32 async_copy(const stream_wrapper& stream);
36
40 void do_copy(std::size_t size, const void* from, void* to,
41 type::copy_type cptype) const final;
44 void do_memset(std::size_t size, void* ptr, int value) const final;
48
51 stream_wrapper m_stream;
52
53}; // class async_copy
54
55} // namespace vecmem::hip
An allocator class that wraps a memory resource.
Definition allocator.hpp:37
Class implementing (synchronous) host <-> device memory copies.
Definition copy.hpp:42
std::unique_ptr< abstract_event > event_type
Event type used by the copy class.
Definition copy.hpp:70
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 HIP.
Definition async_copy.hpp:27
VECMEM_HIP_EXPORT ~async_copy() noexcept
Destructor.
VECMEM_HIP_EXPORT event_type create_event() const final
Create an event for synchronization.
Definition async_copy.cpp:157
VECMEM_HIP_EXPORT void do_copy(std::size_t size, const void *from, void *to, type::copy_type cptype) const final
Perform an asynchronous memory copy using HIP.
Definition async_copy.cpp:109
VECMEM_HIP_EXPORT void do_memset(std::size_t size, void *ptr, int value) const final
Fill a memory area using HIP asynchronously.
Definition async_copy.cpp:136
Wrapper class for hipStream_t.
Definition stream_wrapper.hpp:23
Namespace holding types that work on/with ROCm/HIP.
Definition hip_device_atomic_ref.hpp:25
Wrapper struct around the copy_type enumeration.
Definition copy.hpp:51