Blob Blame History Raw
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
/*
 *  (C) 2001 by Argonne National Laboratory.
 *      See COPYRIGHT in top-level directory.
 */

#include <stdio.h>
#include <stdlib.h>

#include <mpi.h>
#include "mpitest.h"

#define DATA_NELTS  1000
#define NUM_WIN     1000
#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];

    MTest_Init(&argc, &argv);

    MPI_Comm_rank(MPI_COMM_WORLD, &rank);
    MPI_Comm_size(MPI_COMM_WORLD, &nproc);

    if (rank == 0)
        MTestPrintfMsg(1, "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)
            MTestPrintfMsg(1, " + 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)
            MTestPrintfMsg(1, " + Freeing window %d\n", i);

        MPI_Win_free(&windows[i]);
        MPI_Free_mem(base_ptrs[i]);
    }

    MTest_Finalize(0);

    return 0;
}