template<typename T>
class vtkm::cont::AtomicArray< T >
A type list containing types that can be used with an AtomicArray.
A class that can be used to atomically operate on an array of values safely across multiple instances of the same worklet. This is useful when you have an algorithm that needs to accumulate values in parallel, but writing out a value per worklet might be memory prohibitive.
To construct an AtomicArray you will need to pass in an vtkm::cont::ArrayHandle that is used as the underlying storage for the AtomicArray
Supported Operations: get / add / compare and swap (CAS). See AtomicArrayExecutionObject for details.
Supported Types: 32 / 64 bit signed/unsigned integers.