ef7ab9bf96
- added calls for datatypes int/uint/8/16/32/size/ptrdiff
for shmem_g/get/iget/get_nbi/_p/put/iput/put_nbi
Signed-off-by: Sergey Oblomov <sergeyo@mellanox.com>
(cherry picked from commit cfa9150934
)
171 строка
7.5 KiB
C
171 строка
7.5 KiB
C
/*
|
|
* 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"
|
|
#include "oshmem/include/shmemx.h"
|
|
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
#include "oshmem/mca/spml/spml.h"
|
|
|
|
/*
|
|
* These routines provide a low latency mechanism to write basic types (short,
|
|
* int, float, double, long) to symmetric data objects on remote PEs.
|
|
* The shmem_TYPE_p() routines write value to a symmetric array element or scalar
|
|
* data object of the remote PE indicated by the parameter pe. These routines start the remote
|
|
* transfer and may return before the data is delivered to the remote PE.
|
|
*/
|
|
|
|
#define DO_SHMEM_TYPE_P(ctx, type, addr, value, pe) do { \
|
|
int rc = OSHMEM_SUCCESS; \
|
|
size_t size = 0; \
|
|
\
|
|
RUNTIME_CHECK_INIT(); \
|
|
RUNTIME_CHECK_PE(pe); \
|
|
RUNTIME_CHECK_ADDR(addr); \
|
|
\
|
|
size = sizeof(type); \
|
|
rc = MCA_SPML_CALL(put( \
|
|
ctx, \
|
|
(void*)addr, \
|
|
size, \
|
|
(void*)&value, \
|
|
pe)); \
|
|
RUNTIME_CHECK_RC(rc); \
|
|
} while(0)
|
|
|
|
#define SHMEM_CTX_TYPE_P(type_name, type, prefix) \
|
|
void prefix##_ctx##type_name##_p(shmem_ctx_t ctx, type *addr, type value, int pe) \
|
|
{ \
|
|
DO_SHMEM_TYPE_P(ctx, type, addr, value, pe); \
|
|
return ; \
|
|
}
|
|
|
|
#define SHMEM_TYPE_P(type_name, type, prefix) \
|
|
void prefix##type_name##_p(type *addr, type value, int pe) \
|
|
{ \
|
|
DO_SHMEM_TYPE_P(oshmem_ctx_default, type, addr, value, pe); \
|
|
return ; \
|
|
}
|
|
|
|
#if OSHMEM_PROFILING
|
|
#include "oshmem/include/pshmem.h"
|
|
#pragma weak shmem_ctx_char_p = pshmem_ctx_char_p
|
|
#pragma weak shmem_ctx_short_p = pshmem_ctx_short_p
|
|
#pragma weak shmem_ctx_int_p = pshmem_ctx_int_p
|
|
#pragma weak shmem_ctx_long_p = pshmem_ctx_long_p
|
|
#pragma weak shmem_ctx_float_p = pshmem_ctx_float_p
|
|
#pragma weak shmem_ctx_double_p = pshmem_ctx_double_p
|
|
#pragma weak shmem_ctx_longlong_p = pshmem_ctx_longlong_p
|
|
#pragma weak shmem_ctx_schar_p = pshmem_ctx_schar_p
|
|
#pragma weak shmem_ctx_uchar_p = pshmem_ctx_uchar_p
|
|
#pragma weak shmem_ctx_ushort_p = pshmem_ctx_ushort_p
|
|
#pragma weak shmem_ctx_uint_p = pshmem_ctx_uint_p
|
|
#pragma weak shmem_ctx_ulong_p = pshmem_ctx_ulong_p
|
|
#pragma weak shmem_ctx_ulonglong_p = pshmem_ctx_ulonglong_p
|
|
#pragma weak shmem_ctx_longdouble_p = pshmem_ctx_longdouble_p
|
|
#pragma weak shmem_ctx_int8_p = pshmem_ctx_int8_p
|
|
#pragma weak shmem_ctx_int16_p = pshmem_ctx_int16_p
|
|
#pragma weak shmem_ctx_int32_p = pshmem_ctx_int32_p
|
|
#pragma weak shmem_ctx_int64_p = pshmem_ctx_int64_p
|
|
#pragma weak shmem_ctx_uint8_p = pshmem_ctx_uint8_p
|
|
#pragma weak shmem_ctx_uint16_p = pshmem_ctx_uint16_p
|
|
#pragma weak shmem_ctx_uint32_p = pshmem_ctx_uint32_p
|
|
#pragma weak shmem_ctx_uint64_p = pshmem_ctx_uint64_p
|
|
#pragma weak shmem_ctx_size_p = pshmem_ctx_size_p
|
|
#pragma weak shmem_ctx_ptrdiff_p = pshmem_ctx_ptrdiff_p
|
|
|
|
#pragma weak shmem_char_p = pshmem_char_p
|
|
#pragma weak shmem_short_p = pshmem_short_p
|
|
#pragma weak shmem_int_p = pshmem_int_p
|
|
#pragma weak shmem_long_p = pshmem_long_p
|
|
#pragma weak shmem_float_p = pshmem_float_p
|
|
#pragma weak shmem_double_p = pshmem_double_p
|
|
#pragma weak shmem_longlong_p = pshmem_longlong_p
|
|
#pragma weak shmem_schar_p = pshmem_schar_p
|
|
#pragma weak shmem_uchar_p = pshmem_uchar_p
|
|
#pragma weak shmem_ushort_p = pshmem_ushort_p
|
|
#pragma weak shmem_uint_p = pshmem_uint_p
|
|
#pragma weak shmem_ulong_p = pshmem_ulong_p
|
|
#pragma weak shmem_ulonglong_p = pshmem_ulonglong_p
|
|
#pragma weak shmem_longdouble_p = pshmem_longdouble_p
|
|
#pragma weak shmem_int8_p = pshmem_int8_p
|
|
#pragma weak shmem_int16_p = pshmem_int16_p
|
|
#pragma weak shmem_int32_p = pshmem_int32_p
|
|
#pragma weak shmem_int64_p = pshmem_int64_p
|
|
#pragma weak shmem_uint8_p = pshmem_uint8_p
|
|
#pragma weak shmem_uint16_p = pshmem_uint16_p
|
|
#pragma weak shmem_uint32_p = pshmem_uint32_p
|
|
#pragma weak shmem_uint64_p = pshmem_uint64_p
|
|
#pragma weak shmem_size_p = pshmem_size_p
|
|
#pragma weak shmem_ptrdiff_p = pshmem_ptrdiff_p
|
|
|
|
#pragma weak shmemx_int16_p = pshmemx_int16_p
|
|
#pragma weak shmemx_int32_p = pshmemx_int32_p
|
|
#pragma weak shmemx_int64_p = pshmemx_int64_p
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
#endif
|
|
|
|
SHMEM_CTX_TYPE_P(_char, char, shmem)
|
|
SHMEM_CTX_TYPE_P(_short, short, shmem)
|
|
SHMEM_CTX_TYPE_P(_int, int, shmem)
|
|
SHMEM_CTX_TYPE_P(_long, long, shmem)
|
|
SHMEM_CTX_TYPE_P(_longlong, long long, shmem)
|
|
SHMEM_CTX_TYPE_P(_schar, signed char, shmem)
|
|
SHMEM_CTX_TYPE_P(_uchar, unsigned char, shmem)
|
|
SHMEM_CTX_TYPE_P(_ushort, unsigned short, shmem)
|
|
SHMEM_CTX_TYPE_P(_uint, unsigned int, shmem)
|
|
SHMEM_CTX_TYPE_P(_ulong, unsigned long, shmem)
|
|
SHMEM_CTX_TYPE_P(_ulonglong, unsigned long long, shmem)
|
|
SHMEM_CTX_TYPE_P(_float, float, shmem)
|
|
SHMEM_CTX_TYPE_P(_double, double, shmem)
|
|
SHMEM_CTX_TYPE_P(_longdouble, long double, shmem)
|
|
SHMEM_CTX_TYPE_P(_int8, int8_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_int16, int16_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_int32, int32_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_int64, int64_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_uint8, uint8_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_uint16, uint16_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_uint32, uint32_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_uint64, uint64_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_size, size_t, shmem)
|
|
SHMEM_CTX_TYPE_P(_ptrdiff, ptrdiff_t, shmem)
|
|
|
|
SHMEM_TYPE_P(_char, char, shmem)
|
|
SHMEM_TYPE_P(_short, short, shmem)
|
|
SHMEM_TYPE_P(_int, int, shmem)
|
|
SHMEM_TYPE_P(_long, long, shmem)
|
|
SHMEM_TYPE_P(_longlong, long long, shmem)
|
|
SHMEM_TYPE_P(_schar, signed char, shmem)
|
|
SHMEM_TYPE_P(_uchar, unsigned char, shmem)
|
|
SHMEM_TYPE_P(_ushort, unsigned short, shmem)
|
|
SHMEM_TYPE_P(_uint, unsigned int, shmem)
|
|
SHMEM_TYPE_P(_ulong, unsigned long, shmem)
|
|
SHMEM_TYPE_P(_ulonglong, unsigned long long, shmem)
|
|
SHMEM_TYPE_P(_float, float, shmem)
|
|
SHMEM_TYPE_P(_double, double, shmem)
|
|
SHMEM_TYPE_P(_longdouble, long double, shmem)
|
|
SHMEM_TYPE_P(_int8, int8_t, shmem)
|
|
SHMEM_TYPE_P(_int16, int16_t, shmem)
|
|
SHMEM_TYPE_P(_int32, int32_t, shmem)
|
|
SHMEM_TYPE_P(_int64, int64_t, shmem)
|
|
SHMEM_TYPE_P(_uint8, uint8_t, shmem)
|
|
SHMEM_TYPE_P(_uint16, uint16_t, shmem)
|
|
SHMEM_TYPE_P(_uint32, uint32_t, shmem)
|
|
SHMEM_TYPE_P(_uint64, uint64_t, shmem)
|
|
SHMEM_TYPE_P(_size, size_t, shmem)
|
|
SHMEM_TYPE_P(_ptrdiff, ptrdiff_t, shmem)
|
|
|
|
SHMEM_TYPE_P(_int16, int16_t, shmemx)
|
|
SHMEM_TYPE_P(_int32, int32_t, shmemx)
|
|
SHMEM_TYPE_P(_int64, int64_t, shmemx)
|