| [3d54c23] | 1 | /* -*- Mode: C; -*- */
|
|---|
| 2 | /* Creator: Bronis R. de Supinski (bronis@llnl.gov) Fri Mar 17 2000 */
|
|---|
| 3 | /* no-error.c -- do some MPI calls without any errors */
|
|---|
| 4 |
|
|---|
| 5 | #include <stdio.h>
|
|---|
| 6 | #include "mpi.h"
|
|---|
| 7 |
|
|---|
| 8 | #define buf_size 128
|
|---|
| 9 |
|
|---|
| 10 | int
|
|---|
| 11 | main (int argc, char **argv)
|
|---|
| 12 | {
|
|---|
| 13 | int nprocs = -1;
|
|---|
| 14 | int rank = -1;
|
|---|
| 15 | char processor_name[128];
|
|---|
| 16 | int namelen = 128;
|
|---|
| 17 | int buf0[buf_size];
|
|---|
| 18 | int buf1[buf_size];
|
|---|
| 19 | MPI_Status status;
|
|---|
| 20 | MPI_Comm comm;
|
|---|
| 21 |
|
|---|
| 22 | /* init */
|
|---|
| 23 | MPI_Init (&argc, &argv);
|
|---|
| 24 | MPI_Comm_size (MPI_COMM_WORLD, &nprocs);
|
|---|
| 25 | MPI_Comm_rank (MPI_COMM_WORLD, &rank);
|
|---|
| 26 | MPI_Get_processor_name (processor_name, &namelen);
|
|---|
| 27 | // printf ("(%d) is alive on %s\n", rank, processor_name);
|
|---|
| 28 | fflush (stdout);
|
|---|
| 29 |
|
|---|
| 30 | MPI_Barrier (MPI_COMM_WORLD);
|
|---|
| 31 |
|
|---|
| 32 | if (nprocs < 2) {
|
|---|
| 33 | printf ("not enough tasks\n");
|
|---|
| 34 | }
|
|---|
| 35 | else {
|
|---|
| 36 | MPI_Comm_dup (MPI_COMM_WORLD, &comm);
|
|---|
| 37 |
|
|---|
| 38 | if (rank == 0) {
|
|---|
| 39 | // memset (buf0, 0, buf_size);
|
|---|
| 40 |
|
|---|
| 41 | MPI_Recv (buf1, buf_size, MPI_INT, 1, 0, comm, &status);
|
|---|
| 42 |
|
|---|
| 43 | MPI_Send (buf0, buf_size, MPI_INT, 1, 0, comm);
|
|---|
| 44 | }
|
|---|
| 45 | else if (rank == 1) {
|
|---|
| 46 | // memset (buf1, 1, buf_size);
|
|---|
| 47 |
|
|---|
| 48 | MPI_Recv (buf0, buf_size, MPI_INT, 0, 0, comm, &status);
|
|---|
| 49 |
|
|---|
| 50 | MPI_Send (buf1, buf_size, MPI_INT, 0, 0, comm);
|
|---|
| 51 | }
|
|---|
| 52 |
|
|---|
| 53 | MPI_Comm_free (&comm);
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | MPI_Barrier (MPI_COMM_WORLD);
|
|---|
| 57 |
|
|---|
| 58 | MPI_Finalize ();
|
|---|
| 59 | printf ("(%d) Finished normally\n", rank);
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| 62 | /* EOF */
|
|---|