Utility function to determine whether the current MPI process can do I/O.
pure logical function io_rank() result(is_io) !! Utility function to determine whether the current MPI process can do I/O. is_io = .false. if (nid == nio) is_io = .true. end function io_rank