xref: /phasta/phSolver/common/phComm.c (revision d1293ce908feb078a7fc65b010fc9344f582bfd9)
1 #include "phComm.h"
2 #include <mpi.h>
3 
4 int phcomm_rank() {
5   int r;
6   MPI_Comm_rank(MPI_COMM_WORLD, &r);
7   return r;
8 }
9