Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fortran support for MPI_UB and MPI_LB
[simgrid.git] / include / smpi / mpif.h.in
index 1dee531..bd1c70d 100644 (file)
@@ -1,5 +1,5 @@
 ! -*- fortran -*-
-! Copyright (c) 2010-2019. The SimGrid Team.
+! Copyright (c) 2010-2020. The SimGrid Team.
 ! All rights reserved.
 
 ! This program is free software; you can redistribute it and/or modify it
       parameter(MPI_BYTE=1)
       parameter(MPI_CHARACTER=2)
       parameter(MPI_LOGICAL=3)
+      parameter(MPI_INT=4)
       parameter(MPI_INTEGER=4)
       parameter(MPI_INTEGER1=5)
       parameter(MPI_INTEGER2=6)
       parameter(MPI_INTEGER4=7)
       parameter(MPI_INTEGER8=8)
       parameter(MPI_REAL=9)
+      parameter(MPI_FLOAT=9)
       parameter(MPI_REAL4=10)
       parameter(MPI_REAL8=11)
       parameter(MPI_DOUBLE_PRECISION=12)
+      parameter(MPI_DOUBLE=12)
       parameter(MPI_COMPLEX=13)
       parameter(MPI_DOUBLE_COMPLEX=14)
       parameter(MPI_2INTEGER=15)
       integer MPI_ERRORS_RETURN, MPI_ERRORS_ARE_FATAL
       parameter(MPI_ERRORS_RETURN=42)
       parameter(MPI_ERRORS_ARE_FATAL=43)
+
+      integer MPI_LB, MPI_UB
+      parameter(MPI_LB=44)
+      parameter(MPI_UB=45)
       
       INTEGER MPI_ADDRESS_KIND, MPI_OFFSET_KIND
       PARAMETER (MPI_ADDRESS_KIND=@CMAKE_SIZEOF_VOID_P@)