11#include "vecmem/memory/device_address_space.hpp"
12#include "vecmem/memory/memory_order.hpp"
13#include "vecmem/utils/types.hpp"
47 static_assert(std::is_integral<value_type>::value,
48 "vecmem::posix_device_atomic_ref only accepts built-in "
135#include "vecmem/memory/impl/posix_device_atomic_ref.ipp"
Custom implementation for atomic operations using "POSIX" built-ins.
Definition posix_device_atomic_ref.hpp:27
VECMEM_HOST value_type fetch_add(value_type data, memory_order order=memory_order::seq_cst) const
Add a chosen value to the stored variable.
Definition posix_device_atomic_ref.ipp:112
VECMEM_HOST 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 posix_device_atomic_ref.ipp:98
value_type difference_type
Difference between two objects.
Definition posix_device_atomic_ref.hpp:36
VECMEM_HOST void store(value_type data, memory_order order=memory_order::seq_cst) const
Set the variable to the desired value.
Definition posix_device_atomic_ref.ipp:61
VECMEM_HOST 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 posix_device_atomic_ref.ipp:136
posix_device_atomic_ref & operator=(const posix_device_atomic_ref &)=delete
Disable the assignment operator.
VECMEM_HOST 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 posix_device_atomic_ref.ipp:128
VECMEM_HOST 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 posix_device_atomic_ref.ipp:75
VECMEM_HOST value_type load(memory_order order=memory_order::seq_cst) const
Get the value of the variable.
Definition posix_device_atomic_ref.ipp:68
value_type * pointer
Pointer to the value in global memory.
Definition posix_device_atomic_ref.hpp:38
T value_type
Type managed by the object.
Definition posix_device_atomic_ref.hpp:34
VECMEM_HOST value_type fetch_sub(value_type data, memory_order order=memory_order::seq_cst) const
Substitute a chosen value from the stored variable.
Definition posix_device_atomic_ref.ipp:120
VECMEM_HOST 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 posix_device_atomic_ref.ipp:144
value_type & reference
Reference to a value given by the user.
Definition posix_device_atomic_ref.hpp:40
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