Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions maint/local_python/binding_f08.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,8 +810,8 @@ def dump_mpi_c_interface_nobuf(func, is_large):
# defined in src/binding/fortran/mpif_h/user_proxy.c
c_name = "MPII_op_create"
else:
# uses PMPI c binding directly
c_name = 'P' + get_function_name(func, is_large)
# uses MPI c binding directly
c_name = get_function_name(func, is_large)
dump_interface_function(func, name, c_name, is_large)

def dump_interface_function(func, name, c_name, is_large):
Expand Down
2 changes: 1 addition & 1 deletion src/binding/fortran/use_mpi_f08/wrappers_c/comm_spawn_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int MPIR_Comm_spawn_c(const char *command, char *argv_f, int maxprocs, MPI_Info
}

mpi_errno =
PMPI_Comm_spawn(command, argv_c, maxprocs, info, root, comm, intercomm, array_of_errcodes);
MPI_Comm_spawn(command, argv_c, maxprocs, info, root, comm, intercomm, array_of_errcodes);

if (argv_c != MPI_ARGV_NULL) {
free(argv_c);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ int MPIR_Comm_spawn_multiple_c(int count, char *array_of_commands_f,
free(buf);
}

mpi_errno = PMPI_Comm_spawn_multiple(count, array_of_commands_c, array_of_argv_c,
array_of_maxprocs, array_of_info, root, comm, intercomm,
array_of_errcodes);
mpi_errno = MPI_Comm_spawn_multiple(count, array_of_commands_c, array_of_argv_c,
array_of_maxprocs, array_of_info, root, comm, intercomm,
array_of_errcodes);

free(array_of_commands_c);

Expand Down