Skip to content

Commit 8f8bd55

Browse files
committed
sessions: oops, we made up a function
Turns out that in commit 6bd36a7 we had a function that is not part of the MPI standard. This showed while working on ABI support - which requires us to pay attention to the truth rather than make stuff up. This commit removes our made up MPI_Session_set_info method. Turns out who ever was doing the fortran bindings knew this wasn't a method in the standard so there's no need to change the fortran bindings. Same thing applies to the man pages. Related to #13280 Signed-off-by: Howard Pritchard <[email protected]>
1 parent ec0f472 commit 8f8bd55

File tree

3 files changed

+0
-49
lines changed

3 files changed

+0
-49
lines changed

ompi/include/mpi.h.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2350,7 +2350,6 @@ OMPI_DECLSPEC int MPI_Session_init (MPI_Info info, MPI_Errhandler errhandler,
23502350
MPI_Session *session);
23512351
OMPI_DECLSPEC MPI_Session MPI_Session_f2c (MPI_Fint session);
23522352
OMPI_DECLSPEC int MPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler);
2353-
OMPI_DECLSPEC int MPI_Session_set_info (MPI_Session session, MPI_Info info);
23542353
OMPI_DECLSPEC int MPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype,
23552354
int dest, int tag, MPI_Comm comm,
23562355
MPI_Request *request);
@@ -3501,7 +3500,6 @@ OMPI_DECLSPEC int PMPI_Session_init (MPI_Info info, MPI_Errhandler errhandler,
35013500
MPI_Session *session);
35023501
OMPI_DECLSPEC MPI_Session PMPI_Session_f2c (MPI_Fint session);
35033502
OMPI_DECLSPEC int PMPI_Session_set_errhandler(MPI_Session session, MPI_Errhandler errhandler);
3504-
OMPI_DECLSPEC int PMPI_Session_set_info (MPI_Session session, MPI_Info info);
35053503
OMPI_DECLSPEC int PMPI_Ssend_init(const void *buf, int count, MPI_Datatype datatype,
35063504
int dest, int tag, MPI_Comm comm,
35073505
MPI_Request *request);

ompi/mpi/c/Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,6 @@ prototype_sources = \
372372
session_get_pset_info.c.in \
373373
session_init.c.in \
374374
session_set_errhandler.c.in \
375-
session_set_info.c.in \
376375
ssend.c.in \
377376
ssend_init.c.in \
378377
startall.c.in \

ompi/mpi/c/session_set_info.c.in

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

0 commit comments

Comments
 (0)