forked from lijiext/lammps
add support for MPI_Request_free() to MPI STUBS library
This commit is contained in:
parent
7fb741d53d
commit
ae5ebf6001
|
@ -190,6 +190,13 @@ int MPI_Type_size(MPI_Datatype datatype, int *size)
|
||||||
|
|
||||||
/* ---------------------------------------------------------------------- */
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
int MPI_Request_free(MPI_Request *request)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|
||||||
int MPI_Send(const void *buf, int count, MPI_Datatype datatype,
|
int MPI_Send(const void *buf, int count, MPI_Datatype datatype,
|
||||||
int dest, int tag, MPI_Comm comm)
|
int dest, int tag, MPI_Comm comm)
|
||||||
{
|
{
|
||||||
|
|
|
@ -89,6 +89,7 @@ int MPI_Finalize();
|
||||||
double MPI_Wtime();
|
double MPI_Wtime();
|
||||||
|
|
||||||
int MPI_Type_size(int, int *);
|
int MPI_Type_size(int, int *);
|
||||||
|
int MPI_Request_free(MPI_Request *request);
|
||||||
|
|
||||||
int MPI_Send(const void *buf, int count, MPI_Datatype datatype,
|
int MPI_Send(const void *buf, int count, MPI_Datatype datatype,
|
||||||
int dest, int tag, MPI_Comm comm);
|
int dest, int tag, MPI_Comm comm);
|
||||||
|
|
Loading…
Reference in New Issue