42ec26e640
This commit was SVN r7999.
47 строки
1.5 KiB
Fortran
47 строки
1.5 KiB
Fortran
!
|
|
! Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
! University Research and Technology
|
|
! Corporation. All rights reserved.
|
|
! Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
! of Tennessee Research Foundation. All rights
|
|
! reserved.
|
|
! Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
! University of Stuttgart. All rights reserved.
|
|
! Copyright (c) 2004-2005 The Regents of the University of California.
|
|
! All rights reserved.
|
|
! $COPYRIGHT$
|
|
!
|
|
! Additional copyrights may follow
|
|
!
|
|
! $HEADER$
|
|
!
|
|
|
|
module mpi_kinds
|
|
|
|
include "mpif.h"
|
|
|
|
!
|
|
! integer kinds
|
|
!
|
|
|
|
integer :: MPI_INTEGER1_KIND, MPI_INTEGER2_KIND, MPI_INTEGER4_KIND
|
|
integer :: MPI_INTEGER8_KIND, MPI_INTEGER16_KIND
|
|
parameter(MPI_INTEGER1_KIND = selected_int_kind(2))
|
|
parameter(MPI_INTEGER2_KIND = selected_int_kind(4))
|
|
parameter(MPI_INTEGER4_KIND = selected_int_kind(9))
|
|
parameter(MPI_INTEGER8_KIND = selected_int_kind(18))
|
|
parameter(MPI_INTEGER16_KIND = selected_int_kind(19))
|
|
|
|
!
|
|
! real kinds
|
|
!
|
|
|
|
integer :: MPI_REAL4_KIND, MPI_REAL8_KIND
|
|
integer :: MPI_REAL16_KIND, MPI_REAL32_KIND
|
|
parameter(MPI_REAL4_KIND = selected_real_kind(6))
|
|
parameter(MPI_REAL8_KIND = selected_real_kind(15))
|
|
parameter(MPI_REAL16_KIND = selected_real_kind(31))
|
|
parameter(MPI_REAL32_KIND = selected_real_kind(32))
|
|
|
|
end module mpi_kinds
|