11#include "vecmem/memory/device_address_space.hpp"
12#include "vecmem/memory/memory_order.hpp"
13#include "vecmem/utils/types.hpp"
55 std::is_integral<value_type>::value,
56 "vecmem::cuda::atomic_ref only accepts built-in integral types");
61 VECMEM_HOST_AND_DEVICE
64 VECMEM_HOST_AND_DEVICE
77 VECMEM_HOST_AND_DEVICE
81 VECMEM_HOST_AND_DEVICE
85 VECMEM_HOST_AND_DEVICE
89 VECMEM_HOST_AND_DEVICE
94 VECMEM_HOST_AND_DEVICE
99 VECMEM_HOST_AND_DEVICE
110 VECMEM_HOST_AND_DEVICE
114 VECMEM_HOST_AND_DEVICE
119 VECMEM_HOST_AND_DEVICE
123 VECMEM_HOST_AND_DEVICE
127 VECMEM_HOST_AND_DEVICE
143#include "vecmem/memory/impl/cuda_device_atomic_ref.ipp"
Custom implementation for atomic operations in CUDA device code.
Definition cuda_device_atomic_ref.hpp:34
VECMEM_HOST_AND_DEVICE 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 cuda_device_atomic_ref.ipp:128
VECMEM_HOST_AND_DEVICE value_type fetch_sub(value_type data, memory_order order=memory_order::seq_cst) const
Substitute a chosen value from the stored variable.
Definition cuda_device_atomic_ref.ipp:121
VECMEM_HOST_AND_DEVICE value_type fetch_add(value_type data, memory_order order=memory_order::seq_cst) const
Add a chosen value to the stored variable.
Definition cuda_device_atomic_ref.ipp:114
VECMEM_HOST_AND_DEVICE void store(value_type data, memory_order order=memory_order::seq_cst) const
Set the variable to the desired value.
Definition cuda_device_atomic_ref.ipp:48
value_type difference_type
Difference between two objects.
Definition cuda_device_atomic_ref.hpp:43
device_atomic_ref & operator=(const device_atomic_ref &)=delete
Disable the assignment operator.
T value_type
Type managed by the object.
Definition cuda_device_atomic_ref.hpp:41
VECMEM_HOST_AND_DEVICE 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 cuda_device_atomic_ref.ipp:94
VECMEM_HOST_AND_DEVICE 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 cuda_device_atomic_ref.ipp:135
VECMEM_HOST_AND_DEVICE value_type load(memory_order order=memory_order::seq_cst) const
Get the value of the variable.
Definition cuda_device_atomic_ref.ipp:57
value_type & reference
Reference to a value given by the user.
Definition cuda_device_atomic_ref.hpp:47
value_type * pointer
Pointer to the value in global memory.
Definition cuda_device_atomic_ref.hpp:45
VECMEM_HOST_AND_DEVICE 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 cuda_device_atomic_ref.ipp:70
VECMEM_HOST_AND_DEVICE 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 cuda_device_atomic_ref.ipp:142
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