c429900cd9
Signed-off-by: Xin Zhao <xinz@mellanox.com>
53 строки
2.1 KiB
C
53 строки
2.1 KiB
C
/*
|
|
* Copyright (c) 2018 Mellanox Technologies, Inc.
|
|
* 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 perfetch_orm an atomic 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"
|
|
#pragma weak shmem_uint_atomic_fetch_or = pshmem_uint_atomic_fetch_or
|
|
#pragma weak shmem_ulong_atomic_fetch_or = pshmem_ulong_atomic_fetch_or
|
|
#pragma weak shmem_ulonglong_atomic_fetch_or = pshmem_ulonglong_atomic_fetch_or
|
|
#pragma weak shmem_ctx_uint_atomic_fetch_or = pshmem_ctx_uint_atomic_fetch_or
|
|
#pragma weak shmem_ctx_ulong_atomic_fetch_or = pshmem_ctx_ulong_atomic_fetch_or
|
|
#pragma weak shmem_ctx_ulonglong_atomic_fetch_or = pshmem_ctx_ulonglong_atomic_fetch_or
|
|
#pragma weak shmemx_int32_atomic_fetch_or = pshmemx_int32_atomic_fetch_or
|
|
#pragma weak shmemx_int64_atomic_fetch_or = pshmemx_int64_atomic_fetch_or
|
|
#pragma weak shmemx_uint32_atomic_fetch_or = pshmemx_uint32_atomic_fetch_or
|
|
#pragma weak shmemx_uint64_atomic_fetch_or = pshmemx_uint64_atomic_fetch_or
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
#endif
|
|
|
|
OSHMEM_TYPE_FOP(uint, unsigned int, shmem, or)
|
|
OSHMEM_TYPE_FOP(ulong, unsigned long, shmem, or)
|
|
OSHMEM_TYPE_FOP(ulonglong, unsigned long long, shmem, or)
|
|
OSHMEM_CTX_TYPE_FOP(uint, unsigned int, shmem, or)
|
|
OSHMEM_CTX_TYPE_FOP(ulong, unsigned long, shmem, or)
|
|
OSHMEM_CTX_TYPE_FOP(ulonglong, unsigned long long, shmem, or)
|
|
OSHMEM_TYPE_FOP(int32, int32_t, shmemx, or)
|
|
OSHMEM_TYPE_FOP(int64, int64_t, shmemx, or)
|
|
OSHMEM_TYPE_FOP(uint32, uint32_t, shmemx, or)
|
|
OSHMEM_TYPE_FOP(uint64, uint64_t, shmemx, or)
|