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
|
/*
* Copyright (C) 2010. See COPYRIGHT in top-level directory.
*/
#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
#define DATA_NELTS 1000
#define NUM_WIN 1000 // Error starts at 17. Up to 16 is ok.
#define DATA_SZ (DATA_NELTS*sizeof(int))
int main(int argc, char ** argv) {
int rank, nproc, i;
void *base_ptrs[NUM_WIN];
MPI_Win windows[NUM_WIN];
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &nproc);
if (rank == 0) printf("Starting MPI window creation test with %d processes\n", nproc);
// Perform a pile of window creations
for (i = 0; i < NUM_WIN; i++) {
if (rank == 0) printf(" + Creating window %d\n", i);
MPI_Alloc_mem(DATA_SZ, MPI_INFO_NULL, &base_ptrs[i]);
MPI_Win_create(base_ptrs[i], DATA_SZ, 1, MPI_INFO_NULL, MPI_COMM_WORLD, &windows[i]);
}
MPI_Barrier(MPI_COMM_WORLD);
// Free all the windows
for (i = 0; i < NUM_WIN; i++) {
if (rank == 0) printf(" + Freeing window %d\n", i);
MPI_Win_free(&windows[i]);
MPI_Free_mem(base_ptrs[i]);
}
if (rank == 0) printf("Test complete: PASS.\n");
MPI_Finalize();
return 0;
}
|