11#include "vecmem/memory/device_address_space.hpp"
12#include "vecmem/memory/memory_order.hpp"
48 std::is_integral<value_type>::value,
49 "vecmem::sycl::custom_device_atomic_ref only accepts built-in "
125#include "vecmem/memory/impl/sycl_custom_device_atomic_ref.ipp"
Custom implementation for atomic operations in SYCL device code.
Definition sycl_custom_device_atomic_ref.hpp:27
value_type difference_type
Difference between two objects.
Definition sycl_custom_device_atomic_ref.hpp:36
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
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 * pointer
Pointer to the value in global memory.
Definition sycl_custom_device_atomic_ref.hpp:38
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