Lines Matching defs:comm

397 static __inline__ int comm_rank ( MPI_Comm comm ) 
400 err = PMPI_Comm_rank(comm, &r);
404 static __inline__ int comm_size ( MPI_Comm comm )
407 err = PMPI_Comm_size(comm, &r);
1060 int dest, int tag, MPI_Comm comm)
1068 CALL_FN_W_6W(err, fn, buf,count,datatype,dest,tag,comm);
1074 int dest, int tag, MPI_Comm comm) {
1075 return generic_Send(buf,count,datatype, dest,tag,comm);
1078 int dest, int tag, MPI_Comm comm) {
1079 return generic_Send(buf,count,datatype, dest,tag,comm);
1082 int dest, int tag, MPI_Comm comm) {
1083 return generic_Send(buf,count,datatype, dest,tag,comm);
1086 int dest, int tag, MPI_Comm comm) {
1087 return generic_Send(buf,count,datatype, dest,tag,comm);
1098 MPI_Comm comm, MPI_Status *status)
1110 CALL_FN_W_7W(err, fn, buf,count,datatype,source,tag,comm,status);
1374 int dest, int tag, MPI_Comm comm,
1384 CALL_FN_W_7W(err, fn, buf,count,datatype,dest,tag,comm,request);
1391 int dest, int tag, MPI_Comm comm,
1393 return generic_Isend(buf,count,datatype, dest,tag,comm, request);
1396 int dest, int tag, MPI_Comm comm,
1398 return generic_Isend(buf,count,datatype, dest,tag,comm, request);
1401 int dest, int tag, MPI_Comm comm,
1403 return generic_Isend(buf,count,datatype, dest,tag,comm, request);
1406 int dest, int tag, MPI_Comm comm,
1408 return generic_Isend(buf,count,datatype, dest,tag,comm, request);
1419 int source, int tag, MPI_Comm comm,
1429 CALL_FN_W_7W(err, fn, buf,count,datatype,source,tag,comm,request);
1627 MPI_Comm comm,
1640 CALL_FN_W_5W(err, fn, source,tag,comm,flag,status);
1655 MPI_Comm comm, MPI_Status* status)
1666 CALL_FN_W_WWWW(err, fn, source,tag,comm,status);
1713 MPI_Comm comm, MPI_Status *status)
1728 comm,status);
1808 int* position, MPI_Comm comm )
1822 err = PMPI_Pack_size( incount, datatype, comm, &szB );
1830 CALL_FN_W_7W(err, fn, inbuf,incount,datatype, outbuf,outsize,position, comm);
1857 MPI_Comm comm )
1871 err = PMPI_Pack_size( outcount, datatype, comm, &szB );
1879 CALL_FN_W_7W(err, fn, inbuf,insize,position, outbuf,outcount,datatype, comm);
1912 int root, MPI_Comm comm)
1919 i_am_sender = root == comm_rank(comm);
1926 CALL_FN_W_5W(err, fn, buffer,count,datatype,root,comm);
1955 int root, MPI_Comm comm)
1961 me = comm_rank(comm);
1962 sz = comm_size(comm);
1969 root,comm);
1991 int root, MPI_Comm comm)
1997 me = comm_rank(comm);
1998 sz = comm_size(comm);
2005 root,comm);
2026 MPI_Comm comm)
2032 sz = comm_size(comm);
2038 comm);
2059 int root, MPI_Comm comm)
2066 i_am_root = root == comm_rank(comm);
2071 CALL_FN_W_7W(err, fn, sendbuf,recvbuf,count,datatype,op,root,comm);
2087 MPI_Comm comm)
2096 CALL_FN_W_6W(err, fn, sendbuf,recvbuf,count,datatype,op,comm);
2137 int WRAPPER_FOR(PMPI_Comm_create)(MPI_Comm comm, MPI_Group group,
2145 CALL_FN_W_WWW(err, fn, comm,group,newcomm);
2153 int WRAPPER_FOR(PMPI_Comm_dup)(MPI_Comm comm, MPI_Comm* newcomm)
2160 CALL_FN_W_WW(err, fn, comm,newcomm);
2168 int WRAPPER_FOR(PMPI_Comm_free)(MPI_Comm* comm)
2175 CALL_FN_W_W(err, fn, comm);
2183 int WRAPPER_FOR(PMPI_Comm_rank)(MPI_Comm comm, int *rank)
2191 CALL_FN_W_WW(err, fn, comm,rank);
2200 int WRAPPER_FOR(PMPI_Comm_size)(MPI_Comm comm, int *size)
2208 CALL_FN_W_WW(err, fn, comm,size);