2013-09-10 19:34:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2013-09-10 19:34:09 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2013-09-10 19:34:09 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
#include "oshmem_config.h"
|
|
|
|
|
|
|
|
#include "oshmem/constants.h"
|
|
|
|
#include "oshmem/include/shmem.h"
|
|
|
|
|
|
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
|
|
|
|
#include "oshmem/mca/atomic/atomic.h"
|
|
|
|
|
|
|
|
/*
|
2015-06-24 06:59:57 +03:00
|
|
|
* shmem_cswap performs an atomic conditional swap operation.
|
2013-09-10 19:34:09 +04:00
|
|
|
* The conditional swap routines write value to address target on PE pe, and return the previous
|
|
|
|
* contents of target. The replacement must occur only if cond is equal to target;
|
|
|
|
* otherwise target is left unchanged. In either case, the routine must return the initial value
|
|
|
|
* of target. The operation must be completed without the possibility of another process updating
|
|
|
|
* target between the time of the fetch and the update.
|
|
|
|
*/
|
|
|
|
#define SHMEM_TYPE_CSWAP(type_name, type) \
|
|
|
|
type shmem##type_name##_cswap(type *target, type cond, type value, int pe) \
|
|
|
|
{ \
|
|
|
|
int rc = OSHMEM_SUCCESS; \
|
|
|
|
size_t size = 0; \
|
|
|
|
type out_value; \
|
|
|
|
\
|
|
|
|
RUNTIME_CHECK_INIT(); \
|
|
|
|
RUNTIME_CHECK_PE(pe); \
|
|
|
|
RUNTIME_CHECK_ADDR(target); \
|
|
|
|
\
|
|
|
|
size = sizeof(out_value); \
|
|
|
|
rc = MCA_ATOMIC_CALL(cswap( \
|
|
|
|
(void*)target, \
|
|
|
|
(void*)&out_value, \
|
|
|
|
(const void*)&cond, \
|
|
|
|
(const void*)&value, \
|
|
|
|
size, \
|
|
|
|
pe)); \
|
|
|
|
RUNTIME_CHECK_RC(rc); \
|
|
|
|
\
|
|
|
|
return out_value; \
|
|
|
|
}
|
|
|
|
|
2014-04-08 02:55:21 +04:00
|
|
|
#if OSHMEM_PROFILING
|
2014-04-22 20:49:20 +04:00
|
|
|
#include "oshmem/include/pshmem.h"
|
2014-04-08 02:55:21 +04:00
|
|
|
#pragma weak shmem_int_cswap = pshmem_int_cswap
|
|
|
|
#pragma weak shmem_long_cswap = pshmem_long_cswap
|
|
|
|
#pragma weak shmem_longlong_cswap = pshmem_longlong_cswap
|
2014-04-30 16:03:23 +04:00
|
|
|
#pragma weak shmem_int32_cswap = pshmem_int32_cswap
|
|
|
|
#pragma weak shmem_int64_cswap = pshmem_int64_cswap
|
2014-04-08 02:55:21 +04:00
|
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2013-09-10 19:34:09 +04:00
|
|
|
SHMEM_TYPE_CSWAP(_int, int)
|
|
|
|
SHMEM_TYPE_CSWAP(_long, long)
|
|
|
|
SHMEM_TYPE_CSWAP(_longlong, long long)
|
2014-04-30 16:03:23 +04:00
|
|
|
SHMEM_TYPE_CSWAP(_int32, int32_t)
|
|
|
|
SHMEM_TYPE_CSWAP(_int64, int64_t)
|
2013-09-10 19:34:09 +04:00
|
|
|
|