11#include <sycl/sycl.hpp>
17template <device_address_space address>
22 static constexpr ::sycl::access::address_space add =
23 ::sycl::access::address_space::global_space;
26 using ptr_t = ::sycl::global_ptr<T>;
31 static constexpr ::sycl::access::address_space add =
32 ::sycl::access::address_space::local_space;
34 using ptr_t = ::sycl::local_ptr<T>;
39#define __VECMEM_SYCL_ATOMIC_CALL0(FNAME, PTR) \
40 ::sycl::atomic_##FNAME<value_type, \
41 details::custom_address_space<address>::add>( \
42 ::sycl::atomic<value_type, \
43 details::custom_address_space<address>::add>( \
44 typename details::custom_address_space<address>::template ptr_t< \
46#define __VECMEM_SYCL_ATOMIC_CALL1(FNAME, PTR, ARG1) \
47 ::sycl::atomic_##FNAME<value_type, \
48 details::custom_address_space<address>::add>( \
49 ::sycl::atomic<value_type, \
50 details::custom_address_space<address>::add>( \
51 typename details::custom_address_space<address>::template ptr_t< \
54#define __VECMEM_SYCL_ATOMIC_CALL2(FNAME, PTR, ARG1, ARG2) \
55 ::sycl::atomic_##FNAME<value_type, \
56 details::custom_address_space<address>::add>( \
57 ::sycl::atomic<value_type, \
58 details::custom_address_space<address>::add>( \
59 typename details::custom_address_space<address>::template ptr_t< \
63template <
typename T, device_address_space address>
67template <
typename T, device_address_space address>
70 : m_ptr(parent.m_ptr) {}
72template <
typename T, device_address_space address>
80template <
typename T, device_address_space address>
84 __VECMEM_SYCL_ATOMIC_CALL1(store, m_ptr, data);
87template <
typename T, device_address_space address>
91 return __VECMEM_SYCL_ATOMIC_CALL0(load, m_ptr);
94template <
typename T, device_address_space address>
99 return __VECMEM_SYCL_ATOMIC_CALL1(exchange, m_ptr, data);
102template <
typename T, device_address_space address>
106 if (
order == memory_order::acq_rel) {
108 memory_order::acquire);
109 }
else if (
order == memory_order::release) {
111 memory_order::relaxed);
117template <
typename T, device_address_space address>
124 failure != memory_order::acq_rel);
126 return __VECMEM_SYCL_ATOMIC_CALL2(compare_exchange_strong, m_ptr,
expected,
130template <
typename T, device_address_space address>
135 return __VECMEM_SYCL_ATOMIC_CALL1(fetch_add, m_ptr, data);
138template <
typename T, device_address_space address>
143 return __VECMEM_SYCL_ATOMIC_CALL1(fetch_sub, m_ptr, data);
146template <
typename T, device_address_space address>
151 return __VECMEM_SYCL_ATOMIC_CALL1(fetch_and, m_ptr, data);
154template <
typename T, device_address_space address>
159 return __VECMEM_SYCL_ATOMIC_CALL1(fetch_or, m_ptr, data);
162template <
typename T, device_address_space address>
167 return __VECMEM_SYCL_ATOMIC_CALL1(fetch_xor, m_ptr, data);
170#undef __VECMEM_SYCL_ATOMIC_CALL0
171#undef __VECMEM_SYCL_ATOMIC_CALL1
172#undef __VECMEM_SYCL_ATOMIC_CALL2
Custom implementation for atomic operations in SYCL device code.
Definition sycl_custom_device_atomic_ref.hpp:27
void store(value_type data, memory_order order=memory_order::seq_cst) const
Set the variable to the desired value.
Definition sycl_custom_device_atomic_ref.ipp:81
value_type fetch_sub(value_type data, memory_order order=memory_order::seq_cst) const
Substitute a chosen value from the stored variable.
Definition sycl_custom_device_atomic_ref.ipp:139
T value_type
Type managed by the object.
Definition sycl_custom_device_atomic_ref.hpp:34
value_type exchange(value_type data, memory_order order=memory_order::seq_cst) const
Exchange the current value of the variable with a different one.
Definition sycl_custom_device_atomic_ref.ipp:95
custom_device_atomic_ref(reference ref)
Constructor, with a pointer to the managed variable.
Definition sycl_custom_device_atomic_ref.ipp:64
value_type fetch_or(value_type data, memory_order order=memory_order::seq_cst) const
Replace the current value with the specified value OR-d to it.
Definition sycl_custom_device_atomic_ref.ipp:155
custom_device_atomic_ref & operator=(const custom_device_atomic_ref &)=delete
Disable the assignment operator.
value_type fetch_xor(value_type data, memory_order order=memory_order::seq_cst) const
Replace the current value with the specified value XOR-d to it.
Definition sycl_custom_device_atomic_ref.ipp:163
value_type load(memory_order order=memory_order::seq_cst) const
Get the value of the variable.
Definition sycl_custom_device_atomic_ref.ipp:88
value_type & reference
Reference to a value given by the user.
Definition sycl_custom_device_atomic_ref.hpp:40
value_type fetch_add(value_type data, memory_order order=memory_order::seq_cst) const
Add a chosen value to the stored variable.
Definition sycl_custom_device_atomic_ref.ipp:131
value_type fetch_and(value_type data, memory_order order=memory_order::seq_cst) const
Replace the current value with the specified value AND-ed to it.
Definition sycl_custom_device_atomic_ref.ipp:147
bool compare_exchange_strong(reference expected, value_type desired, memory_order success, memory_order failure) const
Compare against the current value, and exchange only if different.
Definition sycl_custom_device_atomic_ref.ipp:118
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
memory_order
Custom (dummy) definition for the memory order.
Definition memory_order.hpp:31
Definition sycl_custom_device_atomic_ref.ipp:18