File: test_win_create.c

package info (click to toggle)
armci-mpi 0.4-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,004 kB
  • sloc: ansic: 13,849; sh: 506; makefile: 116; fortran: 44
file content (54 lines) | stat: -rw-r--r-- 1,369 bytes parent folder | download | duplicates (4)
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
/*
 * Copyright (C) 2010. See COPYRIGHT in top-level directory.
 */

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

#include <mpi.h>

#if defined(__CRAYXT) || defined(__CRAYXE) || defined(__CRAYXC) || defined(__CRAYXT_COMPUTE_LINUX_TARGET)
#define NUM_WIN     300    // Cray MPI supports ~900 accordig to Nathan...
#else
#define NUM_WIN     1000   // Error starts at 17.  Up to 16 is ok.
#endif

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

  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;
}