2004-08-21 04:49:07 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-11-22 03:37:56 +03:00
|
|
|
* $HEADER$
|
2004-08-21 04:49:07 +04:00
|
|
|
*/
|
2005-09-07 01:41:55 +04:00
|
|
|
/** @file */
|
2004-08-21 04:49:07 +04:00
|
|
|
|
|
|
|
#ifndef MCA_COLL_SM_EXPORT_H
|
|
|
|
#define MCA_COLL_SM_EXPORT_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2005-07-16 00:01:35 +04:00
|
|
|
#include "opal/mca/mca.h"
|
2005-10-04 01:34:58 +04:00
|
|
|
#include "orte/mca/ns/ns_types.h"
|
2005-07-16 00:01:35 +04:00
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/mpool/mpool.h"
|
2005-08-24 01:22:00 +04:00
|
|
|
#include "ompi/mca/common/sm/common_sm_mmap.h"
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-09-03 15:49:46 +04:00
|
|
|
/*
|
|
|
|
* Horrid debugging macro
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
#include <stdio.h>
|
|
|
|
#define D(foo) { printf foo ; fflush(stdout); }
|
|
|
|
#else
|
|
|
|
#define D(foo)
|
|
|
|
#endif
|
|
|
|
|
2005-10-04 01:34:58 +04:00
|
|
|
#if 0
|
|
|
|
#include <sched.h>
|
|
|
|
#define SPIN sched_yield()
|
|
|
|
#else
|
|
|
|
#define SPIN continue
|
|
|
|
#endif
|
|
|
|
|
2005-09-03 15:49:46 +04:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/**
|
|
|
|
* Structure used within bootstrap mmap file for setting up a coll
|
|
|
|
* sm component on a communicator
|
|
|
|
*/
|
|
|
|
struct mca_coll_sm_bootstrap_comm_setup_t {
|
|
|
|
/** Offset to be used in the data mpool for this comm's
|
|
|
|
collective sm operations -- use this value plus the base
|
|
|
|
of the mpool to obtain the pointer to this comm's
|
|
|
|
mca_coll_sm_mpool_area_t */
|
2005-09-07 01:41:55 +04:00
|
|
|
volatile size_t smbcs_data_mpool_offset;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/** Number of processes in this communicator who have seen
|
|
|
|
this value already. */
|
2005-09-07 01:41:55 +04:00
|
|
|
volatile int smbcs_count;
|
|
|
|
|
|
|
|
/** Mechanism for letting multiple processes know whether this
|
|
|
|
allocation succeeded or not */
|
|
|
|
volatile bool smbcs_success;
|
2005-08-24 01:22:00 +04:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_sm_bootstrap_comm_setup_t
|
|
|
|
mca_coll_sm_bootstrap_comm_setup_t;
|
|
|
|
|
2005-10-04 01:34:58 +04:00
|
|
|
/**
|
|
|
|
* Structure that acts as a key for the bootstrap area -- a
|
|
|
|
* segment in the bootstrap mpool is uniquely identified by its
|
|
|
|
* CID and the process name of rank 0 in the group.
|
|
|
|
*/
|
|
|
|
struct mca_coll_sm_bootstrap_comm_key_t {
|
|
|
|
/** CID of the communicator using a bootstrap segment */
|
|
|
|
uint32_t mcsbck_cid;
|
|
|
|
/** Process name of rank 0 in this communicator */
|
|
|
|
orte_process_name_t mcsbck_rank0_name;
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_sm_bootstrap_comm_key_t
|
|
|
|
mca_coll_sm_bootstrap_comm_key_t;
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/**
|
|
|
|
* Extension to the control structure in the bootstrap mmap file
|
|
|
|
*/
|
|
|
|
struct mca_coll_sm_bootstrap_header_extension_t {
|
|
|
|
/** upper-level control structure */
|
|
|
|
mca_common_sm_file_header_t super;
|
|
|
|
|
|
|
|
/** Pointer to the start of the segments in the bootstrap area
|
|
|
|
(map->seg_data only points to just beyond the
|
|
|
|
mca_common_sm_file_header_t) */
|
|
|
|
mca_coll_sm_bootstrap_comm_setup_t *smbhe_segments;
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
/** Pointer to array containing
|
2005-10-04 01:34:58 +04:00
|
|
|
component.sm_bootstrap_num_segments (CID, rank 0 process
|
|
|
|
name) tuples for use in bootstrap phase -- will always
|
|
|
|
point immediately after the end of this struct (i.e.,
|
|
|
|
still within this header, but since it's variable size
|
|
|
|
(set by MCA param), we can't just have it here in the
|
|
|
|
struct. Bonk). */
|
|
|
|
mca_coll_sm_bootstrap_comm_key_t *smbhe_keys;
|
2005-08-24 01:22:00 +04:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_sm_bootstrap_header_extension_t
|
|
|
|
mca_coll_sm_bootstrap_header_extension_t;
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-07-16 00:01:35 +04:00
|
|
|
/**
|
|
|
|
* Structure to hold the sm coll component. First it holds the
|
|
|
|
* base coll component, and then holds a bunch of
|
|
|
|
* sm-coll-component-specific stuff (e.g., current MCA param
|
|
|
|
* values).
|
|
|
|
*/
|
2005-08-24 01:22:00 +04:00
|
|
|
struct mca_coll_sm_component_t {
|
2005-07-16 00:01:35 +04:00
|
|
|
/** Base coll component */
|
|
|
|
mca_coll_base_component_1_0_0_t super;
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/** MCA parameter: Priority of this component */
|
2005-07-16 00:01:35 +04:00
|
|
|
int sm_priority;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/** MCA parameter: Length of a cache line or page (in bytes) */
|
|
|
|
int sm_control_size;
|
|
|
|
|
|
|
|
/** MCA parameter: Name of shared memory control / bootstrap
|
|
|
|
mmap file */
|
|
|
|
char *sm_bootstrap_filename;
|
|
|
|
|
|
|
|
/** MCA parameter: Number of segments in the bootstrap file
|
|
|
|
(for use with setting up multiple comm's with sm
|
|
|
|
components simultaneously) */
|
|
|
|
int sm_bootstrap_num_segments;
|
|
|
|
|
|
|
|
/** MCA parameter: Name of the mpool that this component will
|
|
|
|
use */
|
2005-07-16 00:01:35 +04:00
|
|
|
char *sm_mpool_name;
|
|
|
|
|
2005-09-03 15:49:46 +04:00
|
|
|
/** MCA parameter: Number of "in use" flags in each
|
|
|
|
communicator's area in the data mpool */
|
|
|
|
int sm_comm_num_in_use_flags;
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/** MCA parameter: Number of segments for each communicator in
|
|
|
|
the data mpool */
|
2005-09-03 15:49:46 +04:00
|
|
|
int sm_comm_num_segments;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
|
|
|
/** MCA parameter: Fragment size for data */
|
|
|
|
int sm_fragment_size;
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/** MCA parameter: Degree of tree for tree-based collectives */
|
|
|
|
int sm_tree_degree;
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-09-03 15:49:46 +04:00
|
|
|
/** MCA parameter: Number of processes to use in the
|
|
|
|
calculation of the "info" MCA parameter */
|
|
|
|
int sm_info_comm_size;
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
/******* end of MCA params ********/
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/** Size of the bootstrap area -- calculated in
|
|
|
|
coll_sm_component.c */
|
|
|
|
size_t sm_bootstrap_size;
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/** Size of the data mpool area -- calculated in
|
|
|
|
coll_sm_component.c */
|
|
|
|
size_t sm_data_mpool_size;
|
|
|
|
|
|
|
|
/** Data mpool that will be used */
|
|
|
|
mca_mpool_base_module_t *sm_data_mpool;
|
|
|
|
|
|
|
|
/** Whether we ended up creating the sm mpool or whether
|
|
|
|
someone else created it and we just found it */
|
|
|
|
bool sm_data_mpool_created;
|
|
|
|
|
|
|
|
/** Meta struct containing information about the bootstrap area */
|
|
|
|
mca_common_sm_mmap_t *sm_bootstrap_meta;
|
2005-10-01 03:12:23 +04:00
|
|
|
|
|
|
|
/** How many fragment segments are protected by a single
|
|
|
|
in-use flags. This is solely so that we can only perform
|
|
|
|
the division once and then just use the value without
|
|
|
|
having to re-calculate. */
|
|
|
|
int sm_segs_per_inuse_flag;
|
2005-08-24 01:22:00 +04:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_sm_component_t mca_coll_sm_component_t;
|
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/**
|
|
|
|
* Structure for representing a node in the tree
|
|
|
|
*/
|
|
|
|
struct mca_coll_sm_tree_node_t {
|
|
|
|
/** Arbitrary ID number, starting from 0 */
|
|
|
|
int mcstn_id;
|
|
|
|
/** Pointer to parent, or NULL if root */
|
|
|
|
struct mca_coll_sm_tree_node_t *mcstn_parent;
|
|
|
|
/** Number of children, or 0 if a leaf */
|
|
|
|
int mcstn_num_children;
|
|
|
|
/** Pointer to an array of children, or NULL if 0 ==
|
|
|
|
mcstn_num_children */
|
|
|
|
struct mca_coll_sm_tree_node_t **mcstn_children;
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenienve typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_sm_tree_node_t mca_coll_sm_tree_node_t;
|
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
/**
|
|
|
|
* Simple structure comprising the "in use" flags. Contains two
|
|
|
|
* members: the number of processes that are currently using this
|
|
|
|
* set of segments and the operation number of the current
|
|
|
|
* operation.
|
|
|
|
*/
|
|
|
|
struct mca_coll_sm_in_use_flag_t {
|
|
|
|
/** Number of processes currently using this set of
|
|
|
|
segments */
|
|
|
|
volatile uint32_t mcsiuf_num_procs_using;
|
|
|
|
/** Must match data->mcb_count */
|
|
|
|
volatile uint32_t mcsiuf_operation_count;
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenienve typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_sm_in_use_flag_t mca_coll_sm_in_use_flag_t;
|
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
/**
|
|
|
|
* Structure containing pointers to various arrays of data in the
|
|
|
|
* data mpool area (one of these indexes a single segment in the
|
|
|
|
* data mpool). Nothing is hard-coded because all the array
|
|
|
|
* lengths and displacements of the pointers all depend on how
|
|
|
|
* many processes are in the communicator.
|
|
|
|
*/
|
|
|
|
struct mca_coll_base_mpool_index_t {
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Pointer to beginning of control data */
|
|
|
|
uint32_t *mcbmi_control;
|
|
|
|
/** Pointer to beginning of message fragment data */
|
|
|
|
char *mcbmi_data;
|
2005-08-24 01:22:00 +04:00
|
|
|
};
|
|
|
|
typedef struct mca_coll_base_mpool_index_t mca_coll_base_mpool_index_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure for the sm coll module to hang off the communicator.
|
|
|
|
* Contains communicator-specific information, including pointers
|
|
|
|
* into the data mpool for this comm's sm collective operations
|
|
|
|
* area.
|
|
|
|
*/
|
|
|
|
struct mca_coll_base_comm_t {
|
|
|
|
/** If this process is the one that invoked mpool_alloc() for
|
|
|
|
the data segment, the return value will be in here.
|
|
|
|
Otherwise, it will be NULL (i.e., only the allocating
|
|
|
|
process will call free). */
|
|
|
|
void *mcb_data_mpool_malloc_addr;
|
|
|
|
/** Base of the data mpool */
|
2005-09-02 16:57:47 +04:00
|
|
|
unsigned char *mcb_mpool_base;
|
2005-08-24 01:22:00 +04:00
|
|
|
/** Offset into the data mpool where this comm's operations
|
|
|
|
area is */
|
|
|
|
size_t mcb_mpool_offset;
|
|
|
|
/** Pointer in the data mpool to the beginning of this comm's
|
|
|
|
operations area (i.e., mcb_mpool_base +
|
|
|
|
mcb_mpool_offset) */
|
2005-09-02 16:57:47 +04:00
|
|
|
unsigned char *mcb_mpool_area;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Pointer to my barrier control pages (odd index pages are
|
|
|
|
"in", even index pages are "out") */
|
|
|
|
uint32_t *mcb_barrier_control_me;
|
2005-08-24 01:22:00 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Pointer to my parent's barrier control pages (will be NULL
|
|
|
|
for communicator rank 0; odd index pages are "in", even
|
|
|
|
index pages are "out") */
|
|
|
|
uint32_t *mcb_barrier_control_parent;
|
|
|
|
|
|
|
|
/** Pointers to my childrens' barrier control pages (they're
|
|
|
|
contiguous in memory, so we only point to the base -- the
|
|
|
|
number of children is in my entry in the mcb_tree); will
|
|
|
|
be NULL if this process has no children (odd index pages
|
|
|
|
are "in", even index pages are "out") */
|
|
|
|
uint32_t *mcb_barrier_control_children;
|
2005-08-24 02:02:28 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Number of barriers that we have executed (i.e., which set
|
|
|
|
of barrier buffers to use). */
|
|
|
|
int mcb_barrier_count;
|
2005-08-24 02:02:28 +04:00
|
|
|
|
2005-09-07 01:41:55 +04:00
|
|
|
/** "In use" flags indicating which segments are available */
|
|
|
|
mca_coll_sm_in_use_flag_t *mcb_in_use_flags;
|
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Array of indexes into the mpool area for control and data
|
|
|
|
fragment passing (containing pointers to each segments
|
|
|
|
control and data areas). */
|
|
|
|
mca_coll_base_mpool_index_t *mcb_mpool_index;
|
2005-08-24 02:02:28 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Array of graph nodes representing the tree used for
|
|
|
|
communications */
|
|
|
|
mca_coll_sm_tree_node_t *mcb_tree;
|
2005-08-24 02:02:28 +04:00
|
|
|
|
2005-09-02 16:57:47 +04:00
|
|
|
/** Operation number (i.e., which segment number to use) */
|
2005-09-07 01:41:55 +04:00
|
|
|
uint32_t mcb_operation_count;
|
2005-08-24 01:22:00 +04:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
|
|
|
typedef struct mca_coll_base_comm_t mca_coll_base_comm_t;
|
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
|
2005-07-16 00:01:35 +04:00
|
|
|
/**
|
|
|
|
* Global component instance
|
2005-01-30 04:42:57 +03:00
|
|
|
*/
|
2005-07-16 00:01:35 +04:00
|
|
|
extern mca_coll_sm_component_t mca_coll_sm_component;
|
2004-08-21 04:49:07 +04:00
|
|
|
|
|
|
|
/*
|
2005-01-30 04:42:57 +03:00
|
|
|
* coll module functions
|
2004-08-21 04:49:07 +04:00
|
|
|
*/
|
|
|
|
|
2005-03-27 17:05:23 +04:00
|
|
|
int mca_coll_sm_init_query(bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads);
|
2004-08-21 04:49:07 +04:00
|
|
|
|
|
|
|
const struct mca_coll_base_module_1_0_0_t *
|
2005-01-30 04:42:57 +03:00
|
|
|
mca_coll_sm_comm_query(struct ompi_communicator_t *comm, int *priority,
|
2005-03-27 17:05:23 +04:00
|
|
|
struct mca_coll_base_comm_t **data);
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
int mca_coll_sm_comm_unquery(struct ompi_communicator_t *comm,
|
2005-03-27 17:05:23 +04:00
|
|
|
struct mca_coll_base_comm_t *data);
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-08-24 01:22:00 +04:00
|
|
|
int mca_coll_sm_bootstrap_finalize(void);
|
2004-08-21 04:49:07 +04:00
|
|
|
|
2005-01-30 04:42:57 +03:00
|
|
|
int mca_coll_sm_allgather_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_allgatherv_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void * rbuf, int *rcounts, int *disps,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_allreduce_intra(void *sbuf, void *rbuf, int count,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_alltoall_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void* rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_alltoallv_intra(void *sbuf, int *scounts, int *sdisps,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int *rcounts, int *rdisps,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_alltoallw_intra(void *sbuf, int *scounts, int *sdisps,
|
|
|
|
struct ompi_datatype_t **sdtypes,
|
|
|
|
void *rbuf, int *rcounts, int *rdisps,
|
|
|
|
struct ompi_datatype_t **rdtypes,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_barrier_intra(struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_bcast_intra(void *buff, int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
int root,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_bcast_log_intra(void *buff, int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
int root,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_exscan_intra(void *sbuf, void *rbuf, int count,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_gather_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype, void *rbuf,
|
|
|
|
int rcount, struct ompi_datatype_t *rdtype,
|
|
|
|
int root, struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_gatherv_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype, void *rbuf,
|
|
|
|
int *rcounts, int *disps,
|
|
|
|
struct ompi_datatype_t *rdtype, int root,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_reduce_intra(void *sbuf, void* rbuf, int count,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
int root,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_reduce_log_intra(void *sbuf, void* rbuf, int count,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
int root,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_reduce_scatter_intra(void *sbuf, void *rbuf,
|
|
|
|
int *rcounts,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_scan_intra(void *sbuf, void *rbuf, int count,
|
|
|
|
struct ompi_datatype_t *dtype,
|
|
|
|
struct ompi_op_t *op,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_scatter_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype, void *rbuf,
|
|
|
|
int rcount, struct ompi_datatype_t *rdtype,
|
|
|
|
int root, struct ompi_communicator_t *comm);
|
|
|
|
int mca_coll_sm_scatterv_intra(void *sbuf, int *scounts, int *disps,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void* rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype, int root,
|
|
|
|
struct ompi_communicator_t *comm);
|
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
2004-08-21 04:49:07 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-07 17:33:43 +04:00
|
|
|
/**
|
|
|
|
* Global variables used in the macros (essentially constants, so
|
|
|
|
* these are thread safe)
|
|
|
|
*/
|
|
|
|
extern uint32_t mca_coll_sm_iov_size;
|
|
|
|
extern int32_t mca_coll_sm_bogus_free_after;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to setup flag usage
|
|
|
|
*/
|
|
|
|
#define FLAG_SETUP(flag_num, flag, data) \
|
|
|
|
(flag) = (mca_coll_sm_in_use_flag_t*) \
|
|
|
|
(((char *) (data)->mcb_in_use_flags) + \
|
2005-09-15 06:18:16 +04:00
|
|
|
((flag_num) * mca_coll_sm_component.sm_control_size))
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to wait for the in-use flag to become idle (used by the root)
|
|
|
|
*/
|
|
|
|
#define FLAG_WAIT_FOR_IDLE(flag) \
|
2005-10-04 01:34:58 +04:00
|
|
|
while (0 != (flag)->mcsiuf_num_procs_using) SPIN
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to wait for a flag to indicate that it's ready for this
|
|
|
|
* operation (used by non-root processes to know when FLAG_SET() has
|
|
|
|
* been called)
|
|
|
|
*/
|
|
|
|
#define FLAG_WAIT_FOR_OP(flag, op) \
|
2005-10-04 01:34:58 +04:00
|
|
|
while ((op) != flag->mcsiuf_operation_count) SPIN
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to set an in-use flag with relevant data to claim it
|
|
|
|
*/
|
|
|
|
#define FLAG_RETAIN(flag, num_procs, op_count) \
|
|
|
|
(flag)->mcsiuf_num_procs_using = (num_procs); \
|
2005-09-15 06:18:16 +04:00
|
|
|
(flag)->mcsiuf_operation_count = (op_count)
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to release an in-use flag from this process
|
|
|
|
*/
|
|
|
|
#define FLAG_RELEASE(flag) \
|
2005-09-15 06:18:16 +04:00
|
|
|
opal_atomic_add(&(flag)->mcsiuf_num_procs_using, -1)
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to copy a single segment in from a user buffer to a shared
|
|
|
|
* segment
|
|
|
|
*/
|
2005-09-15 06:18:16 +04:00
|
|
|
#define COPY_FRAGMENT_IN(convertor, index, rank, iov, max_data) \
|
2005-09-07 17:33:43 +04:00
|
|
|
(iov).iov_base = \
|
|
|
|
(index)->mcbmi_data + \
|
2005-09-15 06:18:16 +04:00
|
|
|
((rank) * mca_coll_sm_component.sm_fragment_size); \
|
2005-09-07 17:33:43 +04:00
|
|
|
(max_data) = (iov).iov_len = mca_coll_sm_component.sm_fragment_size; \
|
|
|
|
ompi_convertor_pack(&(convertor), &(iov), &mca_coll_sm_iov_size, \
|
2005-09-15 06:18:16 +04:00
|
|
|
&(max_data), &mca_coll_sm_bogus_free_after)
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to copy a single segment out from a shared segment to a user
|
|
|
|
* buffer
|
|
|
|
*/
|
|
|
|
#define COPY_FRAGMENT_OUT(convertor, src_rank, index, iov, max_data) \
|
|
|
|
(iov).iov_base = (((char*) (index)->mcbmi_data) + \
|
|
|
|
((src_rank) * mca_coll_sm_component.sm_fragment_size)); \
|
|
|
|
ompi_convertor_unpack(&(convertor), &(iov), &mca_coll_sm_iov_size, \
|
2005-09-15 06:18:16 +04:00
|
|
|
&(max_data), &mca_coll_sm_bogus_free_after)
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to memcpy a fragment between one shared segment and another
|
|
|
|
*/
|
|
|
|
#define COPY_FRAGMENT_BETWEEN(src_rank, dest_rank, index, len) \
|
|
|
|
memcpy(((index)->mcbmi_data + \
|
|
|
|
((dest_rank) * mca_coll_sm_component.sm_fragment_size)), \
|
|
|
|
((index)->mcbmi_data + \
|
|
|
|
((src_rank) * \
|
|
|
|
mca_coll_sm_component.sm_fragment_size)), \
|
2005-09-15 06:18:16 +04:00
|
|
|
(len))
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
2005-09-15 06:18:16 +04:00
|
|
|
* Macro to tell children that a segment is ready (normalize
|
|
|
|
* the child's ID based on the shift used to calculate the "me" node
|
|
|
|
* in the tree). Used in fan out opertations.
|
2005-09-07 17:33:43 +04:00
|
|
|
*/
|
|
|
|
#define PARENT_NOTIFY_CHILDREN(children, num_children, index, value) \
|
2005-09-15 06:18:16 +04:00
|
|
|
do { \
|
|
|
|
for (i = 0; i < (num_children); ++i) { \
|
|
|
|
*((size_t*) \
|
|
|
|
(((char*) index->mcbmi_control) + \
|
|
|
|
(mca_coll_sm_component.sm_control_size * \
|
|
|
|
(((children)[i]->mcstn_id + root) % size)))) = (value); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2005-09-07 17:33:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro for childen to wait for parent notification (use real rank).
|
2005-09-15 06:18:16 +04:00
|
|
|
* Save the value passed and then reset it when done. Used in fan out
|
|
|
|
* operations.
|
2005-09-07 17:33:43 +04:00
|
|
|
*/
|
|
|
|
#define CHILD_WAIT_FOR_NOTIFY(rank, index, value) \
|
2005-09-15 06:18:16 +04:00
|
|
|
do { \
|
|
|
|
volatile uint32_t *ptr = ((uint32_t*) \
|
|
|
|
(((char*) index->mcbmi_control) + \
|
|
|
|
((rank) * mca_coll_sm_component.sm_control_size))); \
|
2005-10-04 01:34:58 +04:00
|
|
|
while (0 == *ptr) SPIN; \
|
2005-09-15 06:18:16 +04:00
|
|
|
(value) = *ptr; \
|
|
|
|
*ptr = 0; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro for children to tell parent that the data is ready in their
|
|
|
|
* segment. Used for fan in operations.
|
|
|
|
*/
|
|
|
|
#define CHILD_NOTIFY_PARENT(child_rank, parent_rank, index, value) \
|
|
|
|
((size_t*) \
|
|
|
|
(((char*) (index)->mcbmi_control) + \
|
|
|
|
(mca_coll_sm_component.sm_control_size * \
|
|
|
|
(parent_rank))))[(child_rank)] = (value)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro for parent to wait for a specific child to tell it that the
|
|
|
|
* data is in the child's segment. Save the value when done. Used
|
|
|
|
* for fan in operations.
|
|
|
|
*/
|
|
|
|
#define PARENT_WAIT_FOR_NOTIFY_SPECIFIC(child_rank, parent_rank, index, value) \
|
|
|
|
do { \
|
|
|
|
volatile size_t *ptr = ((size_t *) \
|
|
|
|
(((char*) index->mcbmi_control) + \
|
|
|
|
(mca_coll_sm_component.sm_control_size * \
|
|
|
|
(parent_rank)))) + child_rank; \
|
2005-10-04 01:34:58 +04:00
|
|
|
while (0 == *ptr) SPIN; \
|
2005-09-15 06:18:16 +04:00
|
|
|
(value) = *ptr; \
|
|
|
|
*ptr = 0; \
|
|
|
|
} while (0)
|
2005-09-07 17:33:43 +04:00
|
|
|
|
2004-08-21 04:49:07 +04:00
|
|
|
#endif /* MCA_COLL_SM_EXPORT_H */
|