2016-11-23 02:03:20 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 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"
|
2018-07-09 10:44:35 +03:00
|
|
|
#include "oshmem/include/shmemx.h"
|
2016-11-23 02:03:20 +03:00
|
|
|
|
|
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
|
|
|
|
#include "oshmem/op/op.h"
|
|
|
|
#include "oshmem/mca/atomic/atomic.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These routines perform an atomic increment operation on a remote data object.
|
|
|
|
* The atomic increment routines replace the value of target with its value incremented by
|
|
|
|
* one. The operation must be completed without the possibility of another process updating
|
|
|
|
* target between the time of the fetch and the update.
|
|
|
|
*/
|
2018-06-26 16:56:31 +03:00
|
|
|
#define SHMEM_TYPE_INC(type_name, type, prefix) \
|
|
|
|
void prefix##type_name##_inc(type *target, int pe) \
|
2016-11-23 02:03:20 +03:00
|
|
|
{ \
|
|
|
|
int rc = OSHMEM_SUCCESS; \
|
|
|
|
size_t size = 0; \
|
|
|
|
type value = 1; \
|
|
|
|
\
|
|
|
|
RUNTIME_CHECK_INIT(); \
|
|
|
|
RUNTIME_CHECK_PE(pe); \
|
|
|
|
RUNTIME_CHECK_ADDR(target); \
|
|
|
|
\
|
2018-06-26 16:56:31 +03:00
|
|
|
size = sizeof(value); \
|
|
|
|
rc = MCA_ATOMIC_CALL(add( \
|
2016-11-23 02:03:20 +03:00
|
|
|
(void*)target, \
|
2018-06-27 15:40:39 +03:00
|
|
|
value, \
|
2016-11-23 02:03:20 +03:00
|
|
|
size, \
|
2018-06-26 16:56:31 +03:00
|
|
|
pe)); \
|
2016-11-23 02:03:20 +03:00
|
|
|
RUNTIME_CHECK_RC(rc); \
|
|
|
|
\
|
|
|
|
return ; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#if OSHMEM_PROFILING
|
|
|
|
#include "oshmem/include/pshmem.h"
|
|
|
|
#pragma weak shmem_int_inc = pshmem_int_inc
|
|
|
|
#pragma weak shmem_long_inc = pshmem_long_inc
|
|
|
|
#pragma weak shmem_longlong_inc = pshmem_longlong_inc
|
|
|
|
#pragma weak shmemx_int32_inc = pshmemx_int32_inc
|
|
|
|
#pragma weak shmemx_int64_inc = pshmemx_int64_inc
|
|
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SHMEM_TYPE_INC(_int, int, shmem)
|
|
|
|
SHMEM_TYPE_INC(_long, long, shmem)
|
|
|
|
SHMEM_TYPE_INC(_longlong, long long, shmem)
|
|
|
|
SHMEM_TYPE_INC(_int32, int32_t, shmemx)
|
|
|
|
SHMEM_TYPE_INC(_int64, int64_t, shmemx)
|