Skip to content

Commit c8b494b

Browse files
committed
Add generated fortran alltoall
1 parent 86b584c commit c8b494b

File tree

4 files changed

+2
-33
lines changed

4 files changed

+2
-33
lines changed

ompi/mpi/fortran/use-mpi-f08/Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ mpi_api_files = \
125125
alloc_mem_f08.F90 \
126126
allreduce_f08.F90 \
127127
allreduce_init_f08.F90 \
128-
alltoall_f08.F90 \
129128
alltoall_init_f08.F90 \
130129
alltoallv_f08.F90 \
131130
alltoallv_init_f08.F90 \

ompi/mpi/fortran/use-mpi-f08/alltoall_f08.F90

Lines changed: 0 additions & 32 deletions
This file was deleted.

ompi/mpi/fortran/use-mpi-f08/generate_bindings.py.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ class DatatypeType(FortranType):
198198
return self.tmp_name
199199

200200

201+
@FortranType.add('INT')
201202
class IntType(FortranType):
202203
def declare(self):
203204
return f'INTEGER, INTENT(IN) :: {self.name}'

ompi/mpi/fortran/use-mpi-f08/interface.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ send(BUFFER buf, COUNT count, DATATYPE datatype, RANK dest, TAG tag, COMM comm)
44
isend(BUFFER_ASYNC buf, COUNT count, DATATYPE data, RANK dest, TAG tag, COMM comm, REQUEST request)
55
waitall(SHORTCUT_COUNT count, REQUEST_ARRAY array_of_requests:count, STATUS_ARRAY array_of_statuses:count)
66
testany(SHORTCUT_COUNT count, REQUEST_ARRAY array_of_requests:count, INDEX_OUT index, LOGICAL_OUT flag, STATUS status)
7+
alltoall(BUFFER sendbuf, INT sendcount, DATATYPE sendtype, BUFFER recvbuf, INT recvcount, DATATYPE recvtype, COMM comm)

0 commit comments

Comments
 (0)