2013-09-10 19:34:09 +04:00
|
|
|
/*
|
2015-11-17 12:21:05 +03:00
|
|
|
* Copyright (c) 2013-2015 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/shmem/shmem_api_logger.h"
|
|
|
|
|
|
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
#include "oshmem/mca/memheap/memheap.h"
|
|
|
|
|
2014-04-08 02:55:21 +04:00
|
|
|
#if OSHMEM_PROFILING
|
2014-04-15 00:51:06 +04:00
|
|
|
#include "oshmem/include/pshmem.h"
|
2015-11-17 12:21:05 +03:00
|
|
|
#pragma weak shmem_align = pshmem_align
|
2014-04-08 02:55:21 +04:00
|
|
|
#pragma weak shmemalign = pshmemalign
|
|
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2015-11-17 12:21:05 +03:00
|
|
|
static inline void* _shmemalign(size_t align, size_t size);
|
|
|
|
|
|
|
|
void* shmem_align(size_t align, size_t size)
|
|
|
|
{
|
|
|
|
return _shmemalign(align, size);
|
|
|
|
}
|
|
|
|
|
2013-09-10 19:34:09 +04:00
|
|
|
void* shmemalign(size_t align, size_t size)
|
2015-11-17 12:21:05 +03:00
|
|
|
{
|
|
|
|
return _shmemalign(align, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void* _shmemalign(size_t align, size_t size)
|
2013-09-10 19:34:09 +04:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
void* pBuff = NULL;
|
|
|
|
|
|
|
|
RUNTIME_CHECK_INIT();
|
|
|
|
|
|
|
|
rc = MCA_MEMHEAP_CALL(memalign(align, size, &pBuff));
|
|
|
|
|
|
|
|
if (OSHMEM_SUCCESS != rc) {
|
|
|
|
SHMEM_API_VERBOSE(1,
|
|
|
|
"Allocation with shmemalign(align=%lu, size=%lu) failed.",
|
|
|
|
(unsigned long)align, (unsigned long)size);
|
|
|
|
return NULL ;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if OSHMEM_SPEC_COMPAT == 1
|
|
|
|
shmem_barrier_all();
|
|
|
|
#endif
|
|
|
|
return pBuff;
|
|
|
|
}
|
|
|
|
|