2013-09-10 19:34:09 +04:00
|
|
|
/*
|
2016-04-13 16:48:39 +03:00
|
|
|
* Copyright (c) 2013-2016 Mellanox Technologies, Inc.
|
2013-09-10 19:34:09 +04:00
|
|
|
* 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/spml/spml.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These routines provide a low latency mechanism to retrieve basic types (short, int, float,
|
2015-06-24 06:59:57 +03:00
|
|
|
* double, long) from symmetric data objects on remote PEs.
|
2013-09-10 19:34:09 +04:00
|
|
|
* Retrieves the value at the symmetric address addr of the remote PE pe.
|
|
|
|
*/
|
2015-11-27 15:17:38 +03:00
|
|
|
#define SHMEM_TYPE_G(type_name, type, prefix) \
|
2016-04-13 16:48:39 +03:00
|
|
|
type prefix##type_name##_g(const type *addr, int pe) \
|
|
|
|
{ \
|
|
|
|
int rc = OSHMEM_SUCCESS; \
|
|
|
|
size_t size = 0; \
|
|
|
|
type out_value; \
|
|
|
|
\
|
|
|
|
RUNTIME_CHECK_INIT(); \
|
|
|
|
RUNTIME_CHECK_PE(pe); \
|
|
|
|
RUNTIME_CHECK_ADDR(addr); \
|
|
|
|
\
|
|
|
|
size = sizeof(out_value); \
|
|
|
|
rc = MCA_SPML_CALL(get( \
|
|
|
|
(void*)addr, \
|
|
|
|
size, \
|
|
|
|
(void*)&out_value, \
|
|
|
|
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-16 22:01:17 +04:00
|
|
|
#pragma weak shmem_char_g = pshmem_char_g
|
2014-04-08 02:55:21 +04:00
|
|
|
#pragma weak shmem_short_g = pshmem_short_g
|
|
|
|
#pragma weak shmem_int_g = pshmem_int_g
|
|
|
|
#pragma weak shmem_long_g = pshmem_long_g
|
|
|
|
#pragma weak shmem_longlong_g = pshmem_longlong_g
|
|
|
|
#pragma weak shmem_float_g = pshmem_float_g
|
|
|
|
#pragma weak shmem_double_g = pshmem_double_g
|
|
|
|
#pragma weak shmem_longdouble_g = pshmem_longdouble_g
|
2015-11-24 16:36:19 +03:00
|
|
|
#pragma weak shmemx_int16_g = pshmemx_int16_g
|
|
|
|
#pragma weak shmemx_int32_g = pshmemx_int32_g
|
|
|
|
#pragma weak shmemx_int64_g = pshmemx_int64_g
|
2014-04-08 02:55:21 +04:00
|
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2015-11-27 15:17:38 +03:00
|
|
|
SHMEM_TYPE_G(_char, char, shmem)
|
|
|
|
SHMEM_TYPE_G(_short, short, shmem)
|
|
|
|
SHMEM_TYPE_G(_int, int, shmem)
|
|
|
|
SHMEM_TYPE_G(_long, long, shmem)
|
|
|
|
SHMEM_TYPE_G(_longlong, long long, shmem)
|
|
|
|
SHMEM_TYPE_G(_float, float, shmem)
|
|
|
|
SHMEM_TYPE_G(_double, double, shmem)
|
|
|
|
SHMEM_TYPE_G(_longdouble, long double, shmem)
|
2016-04-18 19:32:40 +03:00
|
|
|
SHMEM_TYPE_G(_int16, int16_t, shmemx)
|
|
|
|
SHMEM_TYPE_G(_int32, int32_t, shmemx)
|
|
|
|
SHMEM_TYPE_G(_int64, int64_t, shmemx)
|