MIDAPACK - MIcrowave Data Analysis PACKage  1.1b
Parallel software tools for high performance CMB DA analysis
butterfly_extra.c File Reference

Go to the source code of this file.

Functions

int butterfly_init (int *indices, int count, int **R, int *nR, int **S, int *nS, int **com_indices, int *com_count, int steps, MPI_Comm comm)
 Initialize tables for butterfly-like communication scheme This routine set up needed tables for the butterfly communication scheme. Sending and receiving tabs should be well allocated(at least size of number of steps in butterfly scheme). Double pointer are partially allocated, the last allocation is performed inside the routine. com_indices and com_count are also allocated inside the routine, thus they are passing by reference. They represent indices which have to be communicated an their number. Algotithm is based 2 parts. The first one identify intersection between processors indices, using 3 successives butterfly communication schemes : bottom up, top down, and top down again. The second part works locally to build sets of indices to communicate. More...
 
double butterfly_reduce (int **R, int *nR, int nRmax, int **S, int *nS, int nSmax, double *val, int steps, MPI_Comm comm)
 Perform a sparse sum reduction (or mapped reduction) using a butterfly-like communication scheme. More...
 
int truebutterfly_init (int *indices, int count, int **R, int *nR, int **S, int *nS, int **com_indices, int *com_count, int steps, MPI_Comm comm)
 
double truebutterfly_reduce (int **R, int *nR, int nRmax, int **S, int *nS, int nSmax, double *val, int steps, MPI_Comm comm)
 Perform a sparse sum reduction (or mapped reduction) using a butterfly-like communication scheme. More...
 

Function Documentation

◆ butterfly_init()

int butterfly_init ( int *  indices,
int  count,
int **  R,
int *  nR,
int **  S,
int *  nS,
int **  com_indices,
int *  com_count,
int  steps,
MPI_Comm  comm 
)

Initialize tables for butterfly-like communication scheme This routine set up needed tables for the butterfly communication scheme. Sending and receiving tabs should be well allocated(at least size of number of steps in butterfly scheme). Double pointer are partially allocated, the last allocation is performed inside the routine. com_indices and com_count are also allocated inside the routine, thus they are passing by reference. They represent indices which have to be communicated an their number. Algotithm is based 2 parts. The first one identify intersection between processors indices, using 3 successives butterfly communication schemes : bottom up, top down, and top down again. The second part works locally to build sets of indices to communicate.

Parameters
indicesset of indices(monotony) handle by a process.
countnumber of elements
Rpointer to receiving maps
nRarray of number of elements in each receiving map
Spointer to sending maps
nSarray of number of elements in each sending map
com_indicesset of indices(monotony) communicated by a process
com_countnumber of elements
stepsnumber of communication exchange in the butterfly scheme
commMPI communicator
Returns
0 if no error

Definition at line 51 of file butterfly_extra.c.

◆ butterfly_reduce()

double butterfly_reduce ( int **  R,
int *  nR,
int  nRmax,
int **  S,
int *  nS,
int  nSmax,
double *  val,
int  steps,
MPI_Comm  comm 
)

Perform a sparse sum reduction (or mapped reduction) using a butterfly-like communication scheme.

Parameters
Rpointer to receiving maps
nRarray of number of elements in each receiving map
nRmaxmaximum size of received message
Spointer to sending maps
nSarray of number of elements in each sending map
nSmaxmaximum size of sent message
valset of values (typically values associated to communicated indices)
stepsnumber of communication exchange in the butterfly scheme
commMPI communicator
Returns
0 if no error

Definition at line 235 of file butterfly_extra.c.

◆ truebutterfly_init()

int truebutterfly_init ( int *  indices,
int  count,
int **  R,
int *  nR,
int **  S,
int *  nS,
int **  com_indices,
int *  com_count,
int  steps,
MPI_Comm  comm 
)

Definition at line 277 of file butterfly_extra.c.

◆ truebutterfly_reduce()

double truebutterfly_reduce ( int **  R,
int *  nR,
int  nRmax,
int **  S,
int *  nS,
int  nSmax,
double *  val,
int  steps,
MPI_Comm  comm 
)

Perform a sparse sum reduction (or mapped reduction) using a butterfly-like communication scheme.

Parameters
Rpointer to receiving maps
nRarray of number of elements in each receiving map
nRmaxmaximum size of received message
Spointer to sending maps
nSarray of number of elements in each sending map
nSmaxmaximum size of sent message
valset of values (typically values associated to communicated indices)
stepsnumber of communication exchange in the butterfly scheme
commMPI communicator
Returns
0 if no error

Definition at line 474 of file butterfly_extra.c.