ga_acc.c

来自「The example for Boor USING MPI2」· C语言 代码 · 共 40 行

C
40
字号
#include "ga.h"int ga_acc(GA ga, int ilo, int ihigh, int jlo, int jhigh, void *buf){    int      jcur, jfirst, jlast, j, rank, rank_first, rank_last;    MPI_Aint disp;    /* In order to ensure that the entire update is atomic, we must       first mutex-lock all of the windows that we will access */    rank_first = (jlo - 1) / ga->chunk2;    rank_last  = (jhigh - 1) / ga->chunk2;    for (rank = rank_first; rank <= rank_last; rank++) {	MPE_Mutex_lock( rank, ga->lock_win );    }    jcur = jlo;    while (jcur <= jhigh) {	rank   = (jcur - 1) /ga->chunk2;	jfirst = rank * ga->chunk2 + 1;	jlast  = (rank + 1) * ga->chunk2;	if (jlast > jhigh) jlast = jhigh;	MPI_Win_lock( MPI_LOCK_SHARED, rank, MPI_MODE_NOCHECK,                       ga->ga_win );	for (j=jcur; j<=jlast; j++) {	    disp = (j - jfirst) * ga->dim1 + (ilo - 1);	    MPI_Accumulate( buf, ihigh - ilo + 1, ga->dtype, 		     rank, disp, ihigh - ilo + 1, ga->dtype,                      MPI_SUM, ga->ga_win );	    buf = (void *)( ((char *)buf) +                      (ihigh - ilo + 1) *  ga->dtype_size );	}	MPI_Win_unlock( rank, ga->ga_win );	MPE_Mutex_unlock( rank, ga->lock_win );	jcur = jlast + 1;    }    return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?