atomic_load#
Header File: Kokkos_Core.hpp
Usage:
value = atomic_load(ptr_to_value);
Atomically reads the value at the address given by ptr_to_value.
Synopsis#
template<class T>
T atomic_load(T* const ptr_to_value);
Description#
template<class T> T atomic_load(T* const ptr_to_value);
Atomically executes
value = *ptr_to_value; return value;.ptr_to_value: address of the to be updated value.value: value at addressptr_to_value.