adding MPI_A* functions
This commit was SVN r489.
Этот коммит содержится в:
родитель
1d1006e742
Коммит
117b635fcb
@ -375,34 +375,48 @@ extern "C" {
|
||||
int MPI_TYPE_DUP_FN(MPI_Datatype, int, void *, void *, void *, int *);
|
||||
int MPI_WIN_DUP_FN(MPI_Win, int, void *, void *, void *, int *);
|
||||
|
||||
int MPI_Abort(MPI_Comm, int);
|
||||
int MPI_Accumulate(void *, int, MPI_Datatype, int, MPI_Aint,
|
||||
int, MPI_Datatype, MPI_Op, MPI_Win);
|
||||
int MPI_Address(void *, MPI_Aint *);
|
||||
int MPI_Allgather(void *, int, MPI_Datatype, void *, int,
|
||||
MPI_Datatype, MPI_Comm);
|
||||
int MPI_Allgatherv(void *, int, MPI_Datatype, void *, int *,
|
||||
int *, MPI_Datatype, MPI_Comm);
|
||||
int MPI_Abort(MPI_Comm comm, int errorcode);
|
||||
int MPI_Accumulate(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
|
||||
int target_rank, MPI_Aint target_disp, int target_count,
|
||||
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win);
|
||||
int MPI_Add_error_class(int *errorclass);
|
||||
int MPI_Add_error_code(int errorclass, int *errorcode);
|
||||
int MPI_Add_error_string(int errorcode, char *string);
|
||||
int MPI_Address(void *location, MPI_Aint *address);
|
||||
int MPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
||||
void *recvbuf, int recvcount,
|
||||
MPI_Datatype recvtype, MPI_Comm comm);
|
||||
int MPI_Allgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
||||
void *recvbuf, int *recvcounts,
|
||||
int *displs, MPI_Datatype recvtype, MPI_Comm comm);
|
||||
int MPI_Alloc_mem(MPI_Aint size, MPI_Info info,
|
||||
void *baseptr);
|
||||
int MPI_Allreduce(void *, void *, int, MPI_Datatype,
|
||||
MPI_Op, MPI_Comm);
|
||||
int MPI_Alltoall(void *, int, MPI_Datatype, void *, int,
|
||||
MPI_Datatype, MPI_Comm);
|
||||
int MPI_Alltoallv(void *, int *, int *, MPI_Datatype, void *,
|
||||
int *, int *, MPI_Datatype, MPI_Comm);
|
||||
int MPI_Alltoallw(void *, int *, int *, MPI_Datatype *, void *,
|
||||
int *, int *, MPI_Datatype *, MPI_Comm);
|
||||
int MPI_Attr_delete(MPI_Comm, int);
|
||||
int MPI_Attr_get(MPI_Comm, int, void *, int *);
|
||||
int MPI_Attr_put(MPI_Comm, int, void *);
|
||||
int MPI_Barrier(MPI_Comm);
|
||||
int MPI_Bcast(void *, int, MPI_Datatype, int, MPI_Comm);
|
||||
int MPI_Bsend(void *, int, MPI_Datatype, int, int, MPI_Comm);
|
||||
int MPI_Bsend_init(void *, int, MPI_Datatype, int, int,
|
||||
MPI_Comm, MPI_Request *);
|
||||
int MPI_Buffer_attach(void *, int);
|
||||
int MPI_Buffer_detach(void *, int *);
|
||||
int MPI_Allreduce(void *sendbuf, void *recvbuf, int count,
|
||||
MPI_Datatype datatype, MPI_Op op, MPI_Comm comm);
|
||||
int MPI_Alltoall(void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
||||
void *recvbuf, int recvcount,
|
||||
MPI_Datatype recvtype, MPI_Comm comm);
|
||||
int MPI_Alltoallv(void *sendbuf, int *sendcounts, int *sdispls,
|
||||
MPI_Datatype sendtype, void *recvbuf, int *recvcounts,
|
||||
int *rdispls, MPI_Datatype recvtype, MPI_Comm comm);
|
||||
int MPI_Alltoallw(void *sendbuf, int *sendcounts, int *sdispls, MPI_Datatype *sendtypes,
|
||||
void *recvbuf, int *recvcounts, int *rdispls, MPI_Datatype *recvtypes,
|
||||
MPI_Comm comm);
|
||||
int MPI_Attr_delete(MPI_Comm comm, int keyval);
|
||||
int MPI_Attr_get(MPI_Comm comm, int keyval, void *attribute_val, int *flag);
|
||||
int MPI_Attr_put(MPI_Comm comm, int keyval, void *attribute_val);
|
||||
/* i
|
||||
* Anju: Shell functions done till here
|
||||
*/
|
||||
int MPI_Barrier(MPI_Comm comm);
|
||||
int MPI_Bcast(void *buffer, int count, MPI_Datatype datatype,
|
||||
int root, MPI_Comm comm);
|
||||
int MPI_Bsend(void *buf, int count, MPI_Datatype datatype,
|
||||
int dest, int tag, MPI_Comm comm);
|
||||
int MPI_Bsend_init(void *buf, int count, MPI_Datatype datatype,
|
||||
int dest, int tag, MPI_Comm comm, MPI_Request *request);
|
||||
int MPI_Buffer_attach(void *buffer, int size);
|
||||
int MPI_Buffer_detach(void *buffer, int *size);
|
||||
int MPI_Cancel(MPI_Request *);
|
||||
int MPI_Cart_coords(MPI_Comm, int, int, int *);
|
||||
int MPI_Cart_create(MPI_Comm, int, int *, int *, int, MPI_Comm *);
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user