292d185c30
- Use opal hash table instead of list for group lookup. - Code cleanup/refactoring. Group cache is now a part of the proc_group. Signed-off-by: Alex Mikheev <alexm@mellanox.com>
97 строки
3.5 KiB
C
97 строки
3.5 KiB
C
/*
|
|
* Copyright (c) 2013-2018 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 "orte/mca/grpcomm/grpcomm.h"
|
|
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
#include "oshmem/mca/scoll/scoll.h"
|
|
|
|
#include "oshmem/proc/proc.h"
|
|
|
|
static void _shmem_broadcast(void *target,
|
|
const void *source,
|
|
size_t nbytes,
|
|
int PE_root,
|
|
int PE_start,
|
|
int logPE_stride,
|
|
int PE_size,
|
|
long *pSync);
|
|
|
|
#define SHMEM_TYPE_BROADCAST(name, element_size) \
|
|
void shmem##name( void *target, \
|
|
const void *source, \
|
|
size_t nelems, \
|
|
int PE_root, \
|
|
int PE_start, \
|
|
int logPE_stride, \
|
|
int PE_size, \
|
|
long *pSync) \
|
|
{ \
|
|
RUNTIME_CHECK_INIT(); \
|
|
RUNTIME_CHECK_ADDR(target); \
|
|
RUNTIME_CHECK_ADDR(source); \
|
|
\
|
|
_shmem_broadcast( target, source, nelems * element_size, \
|
|
PE_root, PE_start, logPE_stride, PE_size, \
|
|
pSync); \
|
|
}
|
|
|
|
static void _shmem_broadcast(void *target,
|
|
const void *source,
|
|
size_t nbytes,
|
|
int PE_root,
|
|
int PE_start,
|
|
int logPE_stride,
|
|
int PE_size,
|
|
long *pSync)
|
|
{
|
|
int rc;
|
|
oshmem_group_t *group;
|
|
|
|
if ((0 <= PE_root) && (PE_root < PE_size)) {
|
|
/* Create group basing PE_start, logPE_stride and PE_size */
|
|
group = oshmem_proc_group_create_nofail(PE_start, 1 << logPE_stride, PE_size);
|
|
if (PE_root >= group->proc_count) {
|
|
rc = OSHMEM_ERROR;
|
|
goto out;
|
|
}
|
|
|
|
/* Define actual PE using relative in active set */
|
|
PE_root = oshmem_proc_pe(group->proc_array[PE_root]);
|
|
|
|
/* Call collective broadcast operation */
|
|
rc = group->g_scoll.scoll_broadcast(group,
|
|
PE_root,
|
|
target,
|
|
source,
|
|
nbytes,
|
|
pSync,
|
|
SCOLL_DEFAULT_ALG);
|
|
out:
|
|
oshmem_proc_group_destroy(group);
|
|
RUNTIME_CHECK_RC(rc);
|
|
}
|
|
}
|
|
|
|
#if OSHMEM_PROFILING
|
|
#include "oshmem/include/pshmem.h"
|
|
#pragma weak shmem_broadcast32 = pshmem_broadcast32
|
|
#pragma weak shmem_broadcast64 = pshmem_broadcast64
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
#endif
|
|
|
|
SHMEM_TYPE_BROADCAST(_broadcast32, sizeof(uint32_t))
|
|
SHMEM_TYPE_BROADCAST(_broadcast64, sizeof(uint64_t))
|