1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
#include "redist.h"
/* $Id: pdgemr2.c,v 1.1.1.1 2000/02/15 18:04:09 susan Exp $
*
* some functions used by the pdgemr2d routine see file pdgemr.c for more
* documentation.
*
* Created March 1993 by B. Tourancheau (See sccs for modifications). */
#define static2 static
#if defined(Add_) || defined(f77IsF2C)
#define fortran_mr2d pdgemr2do_
#define fortran_mr2dnew pdgemr2d_
#elif defined(UpCase)
#define fortran_mr2dnew PDGEMR2D
#define fortran_mr2d PDGEMR2DO
#define dcopy_ DCOPY
#define dlacpy_ DLACPY
#else
#define fortran_mr2d pdgemr2do
#define fortran_mr2dnew pdgemr2d
#define dcopy_ dcopy
#define dlacpy_ dlacpy
#endif
#define Clacpy Cdgelacpy
void Clacpy();
typedef struct {
int desctype;
int ctxt;
int m;
int n;
int nbrow;
int nbcol;
int sprow;
int spcol;
int lda;
} MDESC;
#define BLOCK_CYCLIC_2D 1
typedef struct {
int lstart;
int len;
} IDESC;
#define SHIFT(row,sprow,nbrow) ((row)-(sprow)+ ((row) >= (sprow) ? 0 : (nbrow)))
#define max(A,B) ((A)>(B)?(A):(B))
#define min(A,B) ((A)>(B)?(B):(A))
#define DIVUP(a,b) ( ((a)-1) /(b)+1)
#define ROUNDUP(a,b) (DIVUP(a,b)*(b))
#ifdef MALLOCDEBUG
#define malloc mymalloc
#define free myfree
#define realloc myrealloc
#endif
/* Cblacs */
extern void Cblacs_pcoord();
extern int Cblacs_pnum();
extern void Csetpvmtids();
extern void Cblacs_get();
extern void Cblacs_pinfo();
extern void Cblacs_gridinfo();
extern void Cblacs_gridinit();
extern void Cblacs_exit();
extern void Cblacs_gridexit();
extern void Cblacs_setup();
extern void Cigebs2d();
extern void Cigebr2d();
extern void Cigesd2d();
extern void Cigerv2d();
extern void Cigsum2d();
extern void Cigamn2d();
extern void Cigamx2d();
extern void Cdgesd2d();
extern void Cdgerv2d();
/* lapack */
void dlacpy_();
/* aux fonctions */
extern int localindice();
extern void *mr2d_malloc();
extern int ppcm();
extern int localsize();
extern int memoryblocksize();
extern int changeorigin();
extern void paramcheck();
/* tools and others function */
#define scanD0 dgescanD0
#define dispmat dgedispmat
#define setmemory dgesetmemory
#define freememory dgefreememory
#define scan_intervals dgescan_intervals
extern void scanD0();
extern void dispmat();
extern void setmemory();
extern void freememory();
extern int scan_intervals();
extern void Cpdgemr2do();
extern void Cpdgemr2d();
/* some defines for Cpdgemr2do */
#define SENDBUFF 0
#define RECVBUFF 1
#define SIZEBUFF 2
#if 0
#define DEBUG
#endif
#ifndef DEBUG
#define NDEBUG
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <ctype.h>
/* Created March 1993 by B. Tourancheau (See sccs for modifications). */
/************************************************************************/
/* Set the memory space with the malloc function */
void
setmemory(adpointer, blocksize)
double **adpointer;
int blocksize;
{
assert(blocksize >= 0);
if (blocksize == 0) {
*adpointer = NULL;
return;
}
*adpointer = (double *) mr2d_malloc(
blocksize * sizeof(double));
}
/******************************************************************/
/* Free the memory space after the malloc */
void
freememory(ptrtobefreed)
double *ptrtobefreed;
{
if (ptrtobefreed == NULL)
return;
free((char *) ptrtobefreed);
}
/* extern functions for intersect() extern dcopy_(); */
/* scan_intervals: scans two distributions in one dimension, and compute the
* intersections on the local processor. result must be long enough to
* contains the result that are stocked in IDESC structure, the function
* returns the number of intersections found */
int
scan_intervals(type, ja, jb, n, ma, mb, q0, q1, col0, col1,
result)
char type;
int ja, jb, n, q0, q1, col0, col1;
MDESC *ma, *mb;
IDESC *result;
{
int offset, j0, j1, templatewidth0, templatewidth1, nbcol0, nbcol1;
int l; /* local indice on the beginning of the interval */
assert(type == 'c' || type == 'r');
nbcol0 = (type == 'c' ? ma->nbcol : ma->nbrow);
nbcol1 = (type == 'c' ? mb->nbcol : mb->nbrow);
templatewidth0 = q0 * nbcol0;
templatewidth1 = q1 * nbcol1;
{
int sp0 = (type == 'c' ? ma->spcol : ma->sprow);
int sp1 = (type == 'c' ? mb->spcol : mb->sprow);
j0 = SHIFT(col0, sp0, q0) * nbcol0 - ja;
j1 = SHIFT(col1, sp1, q1) * nbcol1 - jb;
}
offset = 0;
l = 0;
/* a small check to verify that the submatrix begin inside the first block
* of the original matrix, this done by a sort of coordinate change at the
* beginning of the Cpdgemr2d */
assert(j0 + nbcol0 > 0);
assert(j1 + nbcol1 > 0);
while ((j0 < n) && (j1 < n)) {
int end0, end1;
int start, end;
end0 = j0 + nbcol0;
end1 = j1 + nbcol1;
if (end0 <= j1) {
j0 += templatewidth0;
l += nbcol0;
continue;
}
if (end1 <= j0) {
j1 += templatewidth1;
continue;
}
/* compute the raw intersection */
start = max(j0, j1);
start = max(start, 0);
/* the start is correct now, update the corresponding fields */
result[offset].lstart = l + start - j0;
end = min(end0, end1);
if (end0 == end) {
j0 += templatewidth0;
l += nbcol0;
}
if (end1 == end)
j1 += templatewidth1;
/* throw the limit if they go out of the matrix */
end = min(end, n);
assert(end > start);
/* it is a bit tricky to see why the length is always positive after all
* this min and max, first we have the property that every interval
* considered is at least partly into the submatrix, second we arrive
* here only if the raw intersection is non-void, if we remove a limit
* that means the corresponding frontier is in both intervals which
* proove the final interval is non-void, clear ?? */
result[offset].len = end - start;
offset += 1;
} /* while */
return offset;
}
|