comm-size-example.c 86 B

1234567
  1. #include "mpi.h"
  2. int size;
  3. MPI_Comm comm;
  4. ...
  5. MPI_Comm_size(comm, &size);
  6. ...