2004-01-26 01:07:54 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-18 23:04:09 +03:00
|
|
|
#include "runtime/runtime.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-03-18 23:04:09 +03:00
|
|
|
#include "mca/pml/pml.h"
|
|
|
|
|
2004-01-26 01:07:54 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Issend = PMPI_Issend
|
|
|
|
#endif
|
|
|
|
|
2004-03-18 23:04:09 +03:00
|
|
|
int MPI_Issend(void *buf, int count, MPI_Datatype type, int dest,
|
|
|
|
int tag, MPI_Comm comm, MPI_Request *request)
|
|
|
|
{
|
|
|
|
if (dest == MPI_PROC_NULL) {
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( MPI_PARAM_CHECK ) {
|
|
|
|
int rc = MPI_SUCCESS;
|
|
|
|
if (lam_mpi_finalized) {
|
|
|
|
rc = MPI_ERR_INTERN;
|
|
|
|
} else if (count < 0) {
|
|
|
|
rc = MPI_ERR_COUNT;
|
|
|
|
#if 0
|
|
|
|
} else if (type == MPI_DATATYPE_NULL) {
|
|
|
|
rc = MPI_ERR_TYPE;
|
|
|
|
#endif
|
|
|
|
} else if (tag < 0 || tag > MPI_TAG_UB_VALUE) {
|
|
|
|
rc = MPI_ERR_TAG;
|
|
|
|
} else if (lam_comm_invalid(comm)) {
|
|
|
|
rc = MPI_ERR_COMM;
|
|
|
|
} else if (lam_comm_peer_invalid(comm, dest)) {
|
|
|
|
rc = MPI_ERR_RANK;
|
|
|
|
} else if (request == NULL) {
|
|
|
|
rc = MPI_ERR_REQUEST;
|
|
|
|
}
|
|
|
|
if (rc != MPI_SUCCESS) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mca_pml.pml_isend(buf,count,type,dest,tag,MCA_PML_BASE_SEND_SYNCHRONOUS,comm,request);
|
2004-01-26 01:07:54 +03:00
|
|
|
}
|
2004-03-18 23:04:09 +03:00
|
|
|
|