Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Kokkos::atomic_store

Daniel Arndt edited this page May 1, 2020 · 3 revisions

Kokkos::atomic_store

Header File: Kokkos_Core.hpp

Usage:

atomic_store(ptr_to_value,new_value);

Atomically sets the value at the address given by ptr_to_value to new_value.

Synopsis

  template<class T>
  void atomic_store(T* const ptr_to_value, const T new_value);

Description

  • template<class T>
    void atomic_store(T* const ptr_to_value, const T new_value);

    Atomically executes *ptr_to_value = new_value;.

    • ptr_to_value: address of the to be updated value.
    • new_value: new value.
Clone this wiki locally