You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
330 B
C
14 lines
330 B
C
9 months ago
|
#include <mpi.h>
|
||
|
#include <stdio.h>
|
||
|
int main(int argc, char *argv[]) {
|
||
|
int commsize, my_rank;
|
||
|
|
||
|
MPI_Init(&argc, &argv);
|
||
|
|
||
|
MPI_Comm_size(MPI_COMM_WORLD, &commsize);
|
||
|
MPI_Comm_rank(MPI_COMM_WORLD, &my_rank);
|
||
|
printf ("Communicator size = %d; My rank = %d\n", commsize,my_rank);
|
||
|
|
||
|
MPI_Finalize();
|
||
|
}
|