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 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/vecmem_hip_export.hpp"
13
14namespace vecmem::hip {
15
18
19protected:
21 virtual void do_copy(std::size_t size, const void* from, void* to,
22 type::copy_type cptype) const override final;
24 virtual void do_memset(std::size_t size, void* ptr,
25 int value) const override final;
26
27}; // class copy
28
29} // namespace vecmem::hip
Class implementing (synchronous) host <-> device memory copies.
Definition copy.hpp:41
Specialisation of vecmem::copy for HIP.
Definition copy.hpp:17
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