X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8eefc320a65bf89b70487906ee5cda20864eedf5..5ca17dc381bb7fba4f2689143e2080f7549ee0ab:/teshsuite/smpi/mpich3-test/rma/contention_putget.c diff --git a/teshsuite/smpi/mpich3-test/rma/contention_putget.c b/teshsuite/smpi/mpich3-test/rma/contention_putget.c index 312cf31ee5..abfdb2bbe5 100644 --- a/teshsuite/smpi/mpich3-test/rma/contention_putget.c +++ b/teshsuite/smpi/mpich3-test/rma/contention_putget.c @@ -18,12 +18,15 @@ #define MAXELEMS 6400 #define COUNT 1000 -static int me, nproc; + static const int verbose = 0; void test_put(void); void test_put(void) { + int me, nproc; + MPI_Comm_size(MPI_COMM_WORLD, &nproc); + MPI_Comm_rank(MPI_COMM_WORLD, &me); MPI_Win dst_win; double *dst_buf; double src_buf[MAXELEMS]; @@ -77,6 +80,7 @@ void test_put(void) int main(int argc, char *argv[]) { MPI_Init(&argc, &argv); + int me, nproc; MPI_Comm_size(MPI_COMM_WORLD, &nproc); MPI_Comm_rank(MPI_COMM_WORLD, &me);