2007-12-21 09:02:00 +03:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; -*- */
|
2004-01-10 01:09:51 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2007-12-21 09:02:00 +03:00
|
|
|
* Copyright (c) 2004-2007 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. 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.
|
2007-08-04 04:41:26 +04:00
|
|
|
* Copyright (c) 2006-2007 University of Houston. All rights reserved.
|
|
|
|
* Copyright (c) 2007 Cisco, Inc. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-10 01:09:51 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
/**
|
|
|
|
* @file:
|
|
|
|
*
|
|
|
|
* Infrastructure for MPI group support.
|
|
|
|
*/
|
2007-08-04 04:41:26 +04:00
|
|
|
#include "ompi/proc/proc.h"
|
2004-06-07 19:33:53 +04:00
|
|
|
#ifndef OMPI_GROUP_H
|
|
|
|
#define OMPI_GROUP_H
|
2004-01-10 01:09:51 +03:00
|
|
|
|
2008-06-09 18:53:58 +04:00
|
|
|
#include "orte/util/show_help.h"
|
2004-01-10 01:09:51 +03:00
|
|
|
#include "mpi.h"
|
2007-12-21 09:02:00 +03:00
|
|
|
#include "opal/class/opal_pointer_array.h"
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2007-08-04 04:41:26 +04:00
|
|
|
|
|
|
|
#define BSIZE ((int)sizeof(unsigned char)*8)
|
|
|
|
|
|
|
|
struct ompi_group_sporadic_list_t
|
|
|
|
{
|
|
|
|
int rank_first;
|
|
|
|
int length;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ompi_group_sporadic_data_t
|
|
|
|
{
|
|
|
|
struct ompi_group_sporadic_list_t *grp_sporadic_list;
|
|
|
|
/** list to hold the sporadic struct */
|
|
|
|
int grp_sporadic_list_len;/** length of the structure*/
|
|
|
|
};
|
|
|
|
struct ompi_group_strided_data_t
|
|
|
|
{
|
|
|
|
int grp_strided_offset; /** offset to start from when including or excluding */
|
|
|
|
int grp_strided_stride; /** stride for including or excluding */
|
|
|
|
int grp_strided_last_element; /** the last element to be included for */
|
|
|
|
};
|
|
|
|
struct ompi_group_bitmap_data_t
|
|
|
|
{
|
|
|
|
unsigned char *grp_bitmap_array; /* the bit map array for sparse groups of type BMAP */
|
|
|
|
int grp_bitmap_array_len; /* length of the bit array */
|
|
|
|
};
|
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
/**
|
|
|
|
* Group structure
|
2007-08-04 04:41:26 +04:00
|
|
|
* Currently we have four formats for storing the process pointers that are members
|
|
|
|
* of the group.
|
|
|
|
* PList: a dense format that stores all the process pointers of the group.
|
|
|
|
* Sporadic: a sparse format that stores the ranges of the ranks from the parent group,
|
|
|
|
* that are included in the current group.
|
|
|
|
* Strided: a sparse format that stores three integers that describe a red-black pattern
|
|
|
|
* that the current group is formed from its parent group.
|
|
|
|
* Bitmap: a sparse format that maintains a bitmap of the included processes from the
|
|
|
|
* parent group. For each process that is included from the parent group
|
|
|
|
* its corresponding rank is set in the bitmap array.
|
2004-04-14 03:42:31 +04:00
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
struct ompi_group_t {
|
2005-07-03 20:06:07 +04:00
|
|
|
opal_object_t super; /**< base class */
|
2004-04-14 03:42:31 +04:00
|
|
|
int grp_proc_count; /**< number of processes in group */
|
|
|
|
int grp_my_rank; /**< rank in group */
|
|
|
|
int grp_f_to_c_index; /**< index in Fortran <-> C translation array */
|
2004-11-05 10:52:30 +03:00
|
|
|
struct ompi_proc_t **grp_proc_pointers;
|
2004-06-07 19:33:53 +04:00
|
|
|
/**< list of pointers to ompi_proc_t structures
|
2004-06-15 04:08:57 +04:00
|
|
|
for each process in the group */
|
2007-08-04 04:41:26 +04:00
|
|
|
uint32_t grp_flags; /**< flags, e.g. freed, cannot be freed etc.*/
|
2007-08-07 03:09:37 +04:00
|
|
|
/** pointer to the original group when using sparse storage */
|
2007-08-04 04:41:26 +04:00
|
|
|
struct ompi_group_t *grp_parent_group_ptr;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct ompi_group_sporadic_data_t grp_sporadic;
|
|
|
|
struct ompi_group_strided_data_t grp_strided;
|
|
|
|
struct ompi_group_bitmap_data_t grp_bitmap;
|
|
|
|
} sparse_data;
|
2004-01-10 20:10:29 +03:00
|
|
|
};
|
2007-08-04 04:41:26 +04:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
typedef struct ompi_group_t ompi_group_t;
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC OBJ_CLASS_DECLARATION(ompi_group_t);
|
2004-01-10 01:09:51 +03:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
2004-06-15 04:08:57 +04:00
|
|
|
/* Some definitions for the flags */
|
2007-08-04 04:41:26 +04:00
|
|
|
#define OMPI_GROUP_ISFREED 0x00000001
|
|
|
|
#define OMPI_GROUP_INTRINSIC 0x00000002
|
|
|
|
|
|
|
|
#define OMPI_GROUP_DENSE 0x00000004
|
|
|
|
#define OMPI_GROUP_SPORADIC 0x00000008
|
|
|
|
#define OMPI_GROUP_STRIDED 0x00000010
|
|
|
|
#define OMPI_GROUP_BITMAP 0x00000020
|
2004-06-15 04:08:57 +04:00
|
|
|
|
|
|
|
#define OMPI_GROUP_IS_INTRINSIC(_group) ((_group)->grp_flags&OMPI_GROUP_INTRINSIC)
|
2007-08-04 04:41:26 +04:00
|
|
|
#define OMPI_GROUP_IS_DENSE(_group) ((_group)->grp_flags & OMPI_GROUP_DENSE)
|
|
|
|
#define OMPI_GROUP_IS_SPORADIC(_group) ((_group)->grp_flags & OMPI_GROUP_SPORADIC)
|
|
|
|
#define OMPI_GROUP_IS_STRIDED(_group) ((_group)->grp_flags & OMPI_GROUP_STRIDED)
|
|
|
|
#define OMPI_GROUP_IS_BITMAP(_group) ((_group)->grp_flags & OMPI_GROUP_BITMAP)
|
|
|
|
|
|
|
|
#define OMPI_GROUP_SET_INTRINSIC(_group) ( (_group)->grp_flags |= OMPI_GROUP_INTRINSIC)
|
|
|
|
#define OMPI_GROUP_SET_DENSE(_group) ( (_group)->grp_flags |= OMPI_GROUP_DENSE)
|
|
|
|
#define OMPI_GROUP_SET_SPORADIC(_group) ( (_group)->grp_flags |= OMPI_GROUP_SPORADIC)
|
|
|
|
#define OMPI_GROUP_SET_STRIDED(_group) ( (_group)->grp_flags |= OMPI_GROUP_STRIDED)
|
|
|
|
#define OMPI_GROUP_SET_BITMAP(_group) ( (_group)->grp_flags |= OMPI_GROUP_BITMAP)
|
2004-06-15 04:08:57 +04:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
/**
|
2004-02-13 02:23:03 +03:00
|
|
|
* Table for Fortran <-> C group handle conversion
|
|
|
|
*/
|
2007-12-21 09:02:00 +03:00
|
|
|
OMPI_DECLSPEC extern struct opal_pointer_array_t ompi_group_f_to_c_table;
|
2004-10-26 21:25:49 +04:00
|
|
|
OMPI_DECLSPEC extern ompi_group_t ompi_mpi_group_null;
|
2004-02-13 02:23:03 +03:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* function prototypes
|
2004-02-13 02:23:03 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2004-04-14 03:42:31 +04:00
|
|
|
* Allocate a new group structure.
|
2004-02-13 02:23:03 +03:00
|
|
|
*
|
|
|
|
* @param group_size Number of MPI processes in the group
|
|
|
|
*
|
|
|
|
* @return Pointer to new group structure
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
OMPI_DECLSPEC ompi_group_t *ompi_group_allocate(int group_size);
|
2007-08-04 04:41:26 +04:00
|
|
|
ompi_group_t *ompi_group_allocate_sporadic(int group_size);
|
|
|
|
ompi_group_t *ompi_group_allocate_strided(void);
|
|
|
|
ompi_group_t *ompi_group_allocate_bmap(int orig_group_size, int group_size);
|
2004-04-14 03:42:31 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Increment the reference count of the proc structures.
|
|
|
|
*
|
2004-06-07 19:33:53 +04:00
|
|
|
* @param group Pointer to ompi_group_t structute (IN)
|
2004-04-14 03:42:31 +04:00
|
|
|
*
|
2004-03-16 01:14:08 +03:00
|
|
|
*/
|
2008-02-01 23:35:53 +03:00
|
|
|
OMPI_DECLSPEC void ompi_group_increment_proc_count(ompi_group_t *group);
|
2004-03-16 01:14:08 +03:00
|
|
|
|
2004-12-02 16:28:10 +03:00
|
|
|
/**
|
|
|
|
* Decrement the reference count of the proc structures.
|
|
|
|
*
|
|
|
|
* @param group Pointer to ompi_group_t structute (IN)
|
|
|
|
*
|
|
|
|
*/
|
2008-02-01 23:35:53 +03:00
|
|
|
OMPI_DECLSPEC void ompi_group_decrement_proc_count(ompi_group_t *group);
|
2004-12-02 16:28:10 +03:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
2004-02-13 02:23:03 +03:00
|
|
|
/**
|
2004-06-07 19:33:53 +04:00
|
|
|
* Initialize OMPI group infrastructure.
|
2004-02-13 02:23:03 +03:00
|
|
|
*
|
|
|
|
* @return Error code
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
int ompi_group_init(void);
|
2004-02-13 02:23:03 +03:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
2004-02-13 19:23:29 +03:00
|
|
|
/**
|
2004-06-07 19:33:53 +04:00
|
|
|
* Clean up OMPI group infrastructure.
|
2004-02-13 19:23:29 +03:00
|
|
|
*
|
|
|
|
* @return Error code
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
int ompi_group_finalize(void);
|
2004-02-13 19:23:29 +03:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
2004-02-13 19:41:53 +03:00
|
|
|
/**
|
2004-04-14 03:42:31 +04:00
|
|
|
* Get group size.
|
2004-02-13 19:41:53 +03:00
|
|
|
*
|
2004-06-07 19:33:53 +04:00
|
|
|
* @param group Pointer to ompi_group_t structute (IN)
|
2004-02-13 19:41:53 +03:00
|
|
|
*
|
|
|
|
* @return Group size
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
static inline int ompi_group_size(ompi_group_t *group)
|
2004-04-14 03:42:31 +04:00
|
|
|
{
|
2004-02-13 19:41:53 +03:00
|
|
|
return group->grp_proc_count;
|
|
|
|
}
|
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
2004-02-13 19:41:53 +03:00
|
|
|
/**
|
|
|
|
* Get group rank
|
|
|
|
*
|
2004-06-07 19:33:53 +04:00
|
|
|
* @param group Pointer to ompi_group_t structure (IN)
|
2004-02-13 19:41:53 +03:00
|
|
|
*
|
|
|
|
* @return Group rank
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
static inline int ompi_group_rank(ompi_group_t *group)
|
2004-04-14 03:42:31 +04:00
|
|
|
{
|
2004-06-15 04:08:57 +04:00
|
|
|
return group->grp_my_rank;
|
2004-02-13 19:41:53 +03:00
|
|
|
}
|
2004-02-27 22:22:14 +03:00
|
|
|
|
2004-04-14 03:42:31 +04:00
|
|
|
|
2007-07-11 21:15:28 +04:00
|
|
|
|
2004-02-27 22:22:14 +03:00
|
|
|
/**
|
|
|
|
* Set group rank in the input group structure
|
|
|
|
*
|
2004-06-07 19:33:53 +04:00
|
|
|
* @param group Group Pointer to ompi_group_t structure (IN)
|
|
|
|
* @param proc_pointer Pointer to ompi_proc_t structure for process.
|
2004-02-27 22:22:14 +03:00
|
|
|
* MPI_PROC_NULL may be used to indicate proc not
|
|
|
|
* in group
|
|
|
|
*
|
|
|
|
* @return Error code
|
|
|
|
*/
|
2004-11-05 10:52:30 +03:00
|
|
|
void ompi_set_group_rank(ompi_group_t *group, struct ompi_proc_t *proc_pointer);
|
2004-02-27 22:22:14 +03:00
|
|
|
|
2004-08-04 02:06:49 +04:00
|
|
|
/**
|
|
|
|
* Abstracting MPI_Group_translate_ranks to an ompi function for internal use
|
|
|
|
*/
|
2007-08-30 19:13:08 +04:00
|
|
|
OMPI_DECLSPEC int ompi_group_translate_ranks ( ompi_group_t *group1,
|
2004-08-04 02:06:49 +04:00
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
|
2005-10-14 22:51:20 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstracting MPI_Group_free, since it is required by some internal functions...
|
|
|
|
*/
|
|
|
|
int ompi_group_free (ompi_group_t **group);
|
|
|
|
|
2006-03-15 00:00:55 +03:00
|
|
|
/**
|
2007-08-04 04:41:26 +04:00
|
|
|
* Functions to handle process pointers for sparse group formats
|
2006-03-15 00:00:55 +03:00
|
|
|
*/
|
2008-03-11 21:53:18 +03:00
|
|
|
OMPI_DECLSPEC ompi_proc_t* ompi_group_get_proc_ptr (ompi_group_t* group , int rank);
|
2006-03-15 00:00:55 +03:00
|
|
|
|
2007-08-04 04:41:26 +04:00
|
|
|
int ompi_group_translate_ranks_sporadic ( ompi_group_t *group1,
|
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
int ompi_group_translate_ranks_sporadic_reverse ( ompi_group_t *group1,
|
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
int ompi_group_translate_ranks_strided ( ompi_group_t *group1,
|
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
int ompi_group_translate_ranks_strided_reverse ( ompi_group_t *group1,
|
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
int ompi_group_translate_ranks_bmap ( ompi_group_t *group1,
|
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
int ompi_group_translate_ranks_bmap_reverse ( ompi_group_t *group1,
|
|
|
|
int n_ranks, int *ranks1,
|
|
|
|
ompi_group_t *group2,
|
|
|
|
int *ranks2);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prototypes for the group back-end functions. Argument lists
|
|
|
|
are similar to the according C MPI functions.
|
|
|
|
*/
|
|
|
|
int ompi_group_incl(ompi_group_t* group, int n, int *ranks,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_excl(ompi_group_t* group, int n, int *ranks,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_range_incl(ompi_group_t* group, int n_triplets,
|
|
|
|
int ranges[][3],ompi_group_t **new_group);
|
|
|
|
int ompi_group_range_excl(ompi_group_t* group, int n_triplets,
|
|
|
|
int ranges[][3],ompi_group_t **new_group);
|
|
|
|
int ompi_group_union (ompi_group_t* group1, ompi_group_t* group2,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_intersection(ompi_group_t* group1,ompi_group_t* group2,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_difference(ompi_group_t* group1, ompi_group_t* group2,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include Functions to handle Sparse storage formats
|
|
|
|
*/
|
|
|
|
int ompi_group_incl_plist(ompi_group_t* group, int n, int *ranks,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_incl_spor(ompi_group_t* group, int n, int *ranks,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_incl_strided(ompi_group_t* group, int n, int *ranks,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
int ompi_group_incl_bmap(ompi_group_t* group, int n, int *ranks,
|
|
|
|
ompi_group_t **new_group);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Functions to calculate storage spaces
|
|
|
|
*/
|
|
|
|
int ompi_group_calc_plist ( int n, int *ranks );
|
|
|
|
int ompi_group_calc_strided ( int n, int *ranks );
|
|
|
|
int ompi_group_calc_sporadic ( int n, int *ranks );
|
|
|
|
int ompi_group_calc_bmap ( int n, int orig_size , int *ranks );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to return the minimum value in an array
|
|
|
|
*/
|
|
|
|
int ompi_group_minloc (int list[], int length);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inline function to check if sparse groups are enabled and return the direct access
|
|
|
|
* to the proc pointer, otherwise the lookup function
|
|
|
|
*/
|
|
|
|
static inline struct ompi_proc_t* ompi_group_peer_lookup(ompi_group_t *group, int peer_id)
|
|
|
|
{
|
|
|
|
#if OMPI_ENABLE_DEBUG
|
|
|
|
if (peer_id >= group->grp_proc_count) {
|
2008-06-09 18:53:58 +04:00
|
|
|
opal_output(0, "ompi_group_lookup_peer: invalid peer index (%d)", peer_id);
|
2007-08-04 04:41:26 +04:00
|
|
|
return (struct ompi_proc_t *) NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if OMPI_GROUP_SPARSE
|
|
|
|
return ompi_group_get_proc_ptr (group, peer_id);
|
|
|
|
#else
|
|
|
|
return group->grp_proc_pointers[peer_id];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to print the group info
|
|
|
|
*/
|
|
|
|
int ompi_group_dump (ompi_group_t* group);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ceil Function so not to include the math.h lib
|
|
|
|
*/
|
|
|
|
int ompi_group_div_ceil (int num, int den);
|
2006-03-15 00:00:55 +03:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-07 19:33:53 +04:00
|
|
|
#endif /* OMPI_GROUP_H */
|