1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
* Copyright (c) 2021 NVIDIA Corporation.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/constants.h"
#include "oshmem/include/shmem.h"
#include "oshmem/include/shmemx.h"
#include "oshmem/runtime/runtime.h"
#include "oshmem/op/op.h"
#include "oshmem/mca/atomic/atomic.h"
/*
* These routines perform an atomic nonblocking fetch-and-or operation.
* The fetch and or routines retrieve the value at address target on PE pe, and update
* target with the result of 'or' operation value to the retrieved value. The operation
* must be completed without the possibility of another process updating target between
* the time of the fetch and the update.
*/
#if OSHMEM_PROFILING
#include "oshmem/include/pshmem.h"
/* Nonblocking Atomic Fetch and Or */
#pragma weak shmem_ctx_uint_atomic_fetch_or_nbi = pshmem_ctx_uint_atomic_fetch_or_nbi
#pragma weak shmem_ctx_ulong_atomic_fetch_or_nbi = pshmem_ctx_ulong_atomic_fetch_or_nbi
#pragma weak shmem_ctx_ulonglong_atomic_fetch_or_nbi = pshmem_ctx_ulonglong_atomic_fetch_or_nbi
#pragma weak shmem_ctx_int32_atomic_fetch_or_nbi = pshmem_ctx_int32_atomic_fetch_or_nbi
#pragma weak shmem_ctx_int64_atomic_fetch_or_nbi = pshmem_ctx_int64_atomic_fetch_or_nbi
#pragma weak shmem_ctx_uint32_atomic_fetch_or_nbi = pshmem_ctx_uint32_atomic_fetch_or_nbi
#pragma weak shmem_ctx_uint64_atomic_fetch_or_nbi = pshmem_ctx_uint64_atomic_fetch_or_nbi
#pragma weak shmem_uint_atomic_fetch_or_nbi = pshmem_uint_atomic_fetch_or_nbi
#pragma weak shmem_ulong_atomic_fetch_or_nbi = pshmem_ulong_atomic_fetch_or_nbi
#pragma weak shmem_ulonglong_atomic_fetch_or_nbi = pshmem_ulonglong_atomic_fetch_or_nbi
#pragma weak shmem_int32_atomic_fetch_or_nbi = pshmem_int32_atomic_fetch_or_nbi
#pragma weak shmem_int64_atomic_fetch_or_nbi = pshmem_int64_atomic_fetch_or_nbi
#pragma weak shmem_uint32_atomic_fetch_or_nbi = pshmem_uint32_atomic_fetch_or_nbi
#pragma weak shmem_uint64_atomic_fetch_or_nbi = pshmem_uint64_atomic_fetch_or_nbi
#include "oshmem/shmem/c/profile-defines.h"
#endif
OSHMEM_TYPE_FOP_NBI(uint, unsigned int, shmem, or)
OSHMEM_TYPE_FOP_NBI(ulong, unsigned long, shmem, or)
OSHMEM_TYPE_FOP_NBI(ulonglong, unsigned long long, shmem, or)
OSHMEM_TYPE_FOP_NBI(int32, int32_t, shmem, or)
OSHMEM_TYPE_FOP_NBI(int64, int64_t, shmem, or)
OSHMEM_TYPE_FOP_NBI(uint32, uint32_t, shmem, or)
OSHMEM_TYPE_FOP_NBI(uint64, uint64_t, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(uint, unsigned int, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(ulong, unsigned long, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(ulonglong, unsigned long long, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(int32, int32_t, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(int64, int64_t, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(uint32, uint32_t, shmem, or)
OSHMEM_CTX_TYPE_FOP_NBI(uint64, uint64_t, shmem, or)
|