vecmem 1.14.0
Loading...
Searching...
No Matches
device_atomic_ref.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2022-2024 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// Local include(s).
11#include "vecmem/memory/device_address_space.hpp"
12
13// System include(s).
14#include <atomic>
15
16#if defined(CL_SYCL_LANGUAGE_VERSION) || defined(SYCL_LANGUAGE_VERSION)
17#if defined(VECMEM_HAVE_SYCL_ATOMIC_REF)
18
19// Local include(s).
20#include "vecmem/memory/details/sycl_builtin_device_atomic_ref.hpp"
21
22namespace vecmem {
23
25template <typename T,
26 device_address_space address = device_address_space::global>
27using device_atomic_ref = sycl::builtin_device_atomic_ref<T, address>;
28
29} // namespace vecmem
30
31#else // defined(VECMEM_HAVE_SYCL_ATOMIC_REF)
32
33// Local include(s).
34#include "vecmem/memory/details/sycl_custom_device_atomic_ref.hpp"
35
36namespace vecmem {
37
39template <typename T,
40 device_address_space address = device_address_space::global>
41using device_atomic_ref = sycl::custom_device_atomic_ref<T, address>;
42
43} // namespace vecmem
44
45#endif // defined(VECMEM_HAVE_SYCL_ATOMIC_REF)
46#elif defined(__CUDACC__)
47
48// Local include(s).
49#include "vecmem/memory/details/cuda_device_atomic_ref.hpp"
50
51namespace vecmem {
52
54template <typename T,
55 device_address_space address = device_address_space::global>
56using device_atomic_ref = cuda::device_atomic_ref<T, address>;
57
58} // namespace vecmem
59
60#elif defined(__HIPCC__)
61
62// Local include(s).
63#include "vecmem/memory/details/hip_device_atomic_ref.hpp"
64
65namespace vecmem {
66
68template <typename T,
69 device_address_space address = device_address_space::global>
70using device_atomic_ref = hip::device_atomic_ref<T, address>;
71
72} // namespace vecmem
73
74#elif defined(__cpp_lib_atomic_ref)
75
76namespace vecmem {
77
79template <typename T, device_address_space = device_address_space::global>
80using device_atomic_ref = std::atomic_ref<T>;
81
82} // namespace vecmem
83
84#elif defined(VECMEM_SUPPORT_POSIX_ATOMIC_REF)
85
86// Local include(s).
87#include "vecmem/memory/details/posix_device_atomic_ref.hpp"
88
89namespace vecmem {
90
92template <typename T,
93 device_address_space address = device_address_space::global>
95
96} // namespace vecmem
97
98#else
99
100// Local include(s).
101#include "vecmem/memory/details/dummy_device_atomic_ref.hpp"
102
103namespace vecmem {
104
106template <typename T,
107 device_address_space address = device_address_space::global>
109
110} // namespace vecmem
111
112#endif
113
114// Test that the selected class would fulfill the atomic_ref concept.
115#if __cpp_concepts >= 201907L
116#include "vecmem/concepts/atomic_ref.hpp"
117static_assert(
118 vecmem::concepts::atomic_ref<vecmem::device_atomic_ref<uint32_t> >,
119 "Atomic reference on uint32_t is incompletely defined.");
120static_assert(
121 vecmem::concepts::atomic_ref<vecmem::device_atomic_ref<uint64_t> >,
122 "Atomic reference on uint64_t is incompletely defined.");
123static_assert(
124 vecmem::concepts::atomic_ref<vecmem::device_atomic_ref<std::size_t> >,
125 "Atomic reference on std::size_t is incompletely defined.");
126#endif
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
device_address_space
Custom definition for the device memory adress space.
Definition device_address_space.hpp:12
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
dummy_device_atomic_ref< T, address > device_atomic_ref
Use vecmem::dummy_device_atomic_ref as a fallback.
Definition device_atomic_ref.hpp:108