b89f8fabc9
The project includes following components and frameworks: - ML Collective component - NETPATTERNS and COMMPATTERNS common components - BCOL framework - SBGP framework Note: By default the ML collective component is disabled. In order to enable new collectives user should bump up the priority of ml component (coll_ml_priority) ============================================= Primary Contributors (in alphabetical order): Ishai Rabinovich (Mellanox) Joshua S. Ladd (ORNL / Mellanox) Manjunath Gorentla Venkata (ORNL) Mike Dubman (Mellanox) Noam Bloch (Mellanox) Pavel (Pasha) Shamis (ORNL / Mellanox) Richard Graham (ORNL / Mellanox) Vasily Filipov (Mellanox) This commit was SVN r27078.
47 строки
990 B
C
47 строки
990 B
C
/*
|
|
* Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
|
|
* Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
|
|
#include "ompi/constants.h"
|
|
#include "ompi/communicator/communicator.h"
|
|
#include "ompi/mca/sbgp/basesmuma/sbgp_basesmuma.h"
|
|
#include "orte/mca/rml/rml.h"
|
|
#include "orte/util/proc_info.h"
|
|
|
|
/*
|
|
* Local functions
|
|
*/
|
|
static void
|
|
mca_sbgp_basesmuma_module_construct(mca_sbgp_basesmuma_module_t *module)
|
|
{
|
|
}
|
|
|
|
static void
|
|
mca_sbgp_basesmuma_module_destruct(mca_sbgp_basesmuma_module_t *module)
|
|
{
|
|
/* done */
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(mca_sbgp_basesmuma_module_t,
|
|
mca_sbgp_base_module_t,
|
|
mca_sbgp_basesmuma_module_construct,
|
|
mca_sbgp_basesmuma_module_destruct);
|