-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be4f668
commit 31c4013
Showing
2 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_User_function(invec, inoutvec, len, datatype) | ||
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_PTR | ||
TYPE(C_PTR), VALUE :: invec, inoutvec | ||
INTEGER :: len | ||
TYPE(MPI_Datatype) :: datatype | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_User_function_c(invec, inoutvec, len, datatype) !(_c) | ||
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_PTR | ||
TYPE(C_PTR), VALUE :: invec, inoutvec | ||
INTEGER(KIND=MPI_COUNT_KIND) :: len | ||
TYPE(MPI_Datatype) :: datatype | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Comm_copy_attr_function(oldcomm, comm_keyval, extra_state, | ||
attribute_val_in, attribute_val_out, flag, ierror) | ||
TYPE(MPI_Comm) :: oldcomm | ||
INTEGER :: comm_keyval, ierror | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state, attribute_val_in, | ||
attribute_val_out | ||
LOGICAL :: flag | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Comm_delete_attr_function(comm, comm_keyval, attribute_val, extra_state, ierror) | ||
TYPE(MPI_Comm) :: comm | ||
INTEGER :: comm_keyval, ierror | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: attribute_val, extra_state | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Win_copy_attr_function(oldcomm, comm_keyval, extra_state, | ||
attribute_val_in, attribute_val_out, flag, ierror) | ||
TYPE(MPI_Win) :: oldcomm | ||
INTEGER :: comm_keyval, ierror | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state, attribute_val_in, | ||
attribute_val_out | ||
LOGICAL :: flag | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Win_delete_attr_function(comm, comm_keyval, attribute_val, extra_state, ierror) | ||
TYPE(MPI_Win) :: comm | ||
INTEGER :: comm_keyval, ierror | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: attribute_val, extra_state | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Type_copy_attr_function(oldcomm, comm_keyval, extra_state, | ||
attribute_val_in, attribute_val_out, flag, ierror) | ||
TYPE(MPI_Type) :: oldcomm | ||
INTEGER :: comm_keyval, ierror | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state, attribute_val_in, | ||
attribute_val_out | ||
LOGICAL :: flag | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Type_delete_attr_function(comm, comm_keyval, attribute_val, extra_state, ierror) | ||
TYPE(MPI_Type) :: comm | ||
INTEGER :: comm_keyval, ierror | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: attribute_val, extra_state | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Comm_errhandler_function(comm, error_code) | ||
TYPE(MPI_Comm) :: comm | ||
INTEGER :: error_code | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Win_errhandler_function(win, error_code) | ||
TYPE(MPI_Win) :: win | ||
INTEGER :: error_code | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_File_errhandler_function(file, error_code) | ||
TYPE(MPI_File) :: file | ||
INTEGER :: error_code | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Session_errhandler_function(session, error_code) | ||
TYPE(MPI_Session) :: session | ||
INTEGER :: error_code | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Grequest_query_function(extra_state, status, ierror) | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state | ||
TYPE(MPI_Status) :: status | ||
INTEGER :: ierror | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Grequest_free_function(extra_state, ierror) | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state | ||
INTEGER :: ierror | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Grequest_cancel_function(extra_state, complete, ierror) | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state | ||
LOGICAL :: complete | ||
INTEGER :: ierror | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Datarep_extent_function(datatype, extent, extra_state, ierror) | ||
TYPE(MPI_Datatype) :: datatype | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extent, extra_state | ||
INTEGER :: ierror | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Datarep_conversion_function(userbuf, datatype, count, filebuf, | ||
position, extra_state, ierror) | ||
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_PTR | ||
TYPE(C_PTR), VALUE :: userbuf, filebuf | ||
TYPE(MPI_Datatype) :: datatype | ||
INTEGER :: count, ierror | ||
INTEGER(KIND=MPI_OFFSET_KIND) :: position | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state | ||
|
||
ABSTRACT INTERFACE | ||
SUBROUTINE MPI_Datarep_conversion_function_c(userbuf, datatype, count, | ||
filebuf, position, extra_state, ierror) !(_c) | ||
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_PTR | ||
TYPE(C_PTR), VALUE :: userbuf, filebuf | ||
TYPE(MPI_Datatype) :: datatype | ||
INTEGER(KIND=MPI_COUNT_KIND) :: count | ||
INTEGER(KIND=MPI_OFFSET_KIND) :: position | ||
INTEGER(KIND=MPI_ADDRESS_KIND) :: extra_state | ||
INTEGER :: ierror |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters