Searched refs:MPI_sizeof (Results 1 – 2 of 2) sorted by relevance
| /petsc/include/petsc/mpiuni/ |
| H A D | mpi.h | 262 …#define MPI_sizeof(datatype) ((datatype == MPIU___FP16) ? (int)(2 * sizeof(char)) : MPI_sizeof_def… macro 265 …#define MPI_sizeof(datatype) ((datatype == MPIU___FLOAT128) ? (int)(2 * sizeof(double)) : MPI_size… macro 267 #define MPI_sizeof(datatype) (MPI_sizeof_default(datatype)) macro 458 …ARG(comm), MPIUNI_ARG(status), MPIUNI_Memcpy(recvbuf, sendbuf, (sendcount) * MPI_sizeof(sendtype))) 477 …#define MPI_Type_size(datatype, size) (*(size) = MPI_sizeof(datatype), MPI_SUCCES… 479 #define MPI_Type_ub(datatype, ub) (*(ub) = MPI_sizeof(datatype), MPI_SUCCESS) 480 …#define MPI_Type_extent(datatype, extent) (*(extent) = MPI_sizeof(datatype), MPI_SUCC… 481 …#define MPI_Type_get_extent(datatype, lb, extent) (*(lb) = 0, *(extent) = MPI_sizeof(datatype… 482 …#define MPI_Type_get_true_extent(datatype, lb, extent) (*(lb) = 0, *(extent) = MPI_sizeof(datatype… 493 …G(recvtype), MPIUNI_ARG(comm), MPIUNI_Memcpy(recvbuf, sendbuf, (sendcount) * MPI_sizeof(sendtype))) [all …]
|
| /petsc/src/sys/mpiuni/ |
| H A D | mpi.c | 676 *ierr = MPIUNI_Memcpy(recvbuf, sendbuf, (*count) * MPI_sizeof(*datatype)); in petsc_mpi_scan_() 706 *ierr = MPIUNI_Memcpy(recvbuf, sendbuf, (*sendcount) * MPI_sizeof(*sendtype)); in petsc_mpi_sendrecv_()
|