mipt_parallel/sem1/homework/task1/hello.c

14 lines
330 B
C
Raw Normal View History

2024-02-20 13:16:51 +03:00
#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();
}