IODA Bundle
mpiver.f90
Go to the documentation of this file.
1  program mpi_ver
2  use mpi
3  implicit none
4  integer(kind=kind(MPI_VERSION)), parameter :: zero = ichar('0')
5  character, dimension(17), parameter :: mpiver_str =&
6  (/ 'I', 'N', 'F', 'O', ':', 'M', 'P', 'I', '-', 'V', 'E', 'R', '[', &
7  char(zero + mpi_version), &
8  '.', &
9  char(zero + mpi_subversion), ']' /)
10  print *, mpiver_str
11  end program mpi_ver
program mpi_ver
Definition: mpiver.f90:1