Home
last modified time | relevance | path

Searched refs:MPI_Count (Results 1 – 5 of 5) sorted by relevance

/petsc/include/
H A Dpetscsys.h1943 typedef MPI_Count MPIU_Count;
2825 if (PetscUnlikely(a > (MPI_Count)PETSC_COUNT_MAX)) return MPI_ERR_COUNT; \
2831 MPI_Count count2; in MPIU_Get_count()
2841 …outbuf, count, dtype, op, root, comm) MPI_Reduce_c(inbuf, outbuf, (MPI_Count)(count), dtype, …
2842 …#define MPIU_Send(buf, count, dtype, dest, tag, comm) MPI_Send_c(buf, (MPI_Count)(…
2843 …it(buf, count, dtype, dest, tag, comm, request) MPI_Send_init_c(buf, (MPI_Count)(count), dtype, …
2844 …#define MPIU_Isend(buf, count, dtype, dest, tag, comm, request) MPI_Isend_c(buf, (MPI_Count)…
2845 …#define MPIU_Recv(buf, count, dtype, source, tag, comm, status) MPI_Recv_c(buf, (MPI_Count)(…
2846 …it(buf, count, dtype, source, tag, comm, request) MPI_Recv_init_c(buf, (MPI_Count)(count), dtype, …
2847 …#define MPIU_Irecv(buf, count, dtype, source, tag, comm, request) MPI_Irecv_c(buf, (MPI_Count)…
[all …]
/petsc/src/vec/is/sf/impls/basic/neighbor/
H A Dsfneighbor.c7 typedef MPI_Count PetscSFCount;
/petsc/include/petsc/mpiuni/
H A Dmpi.h152 typedef MPIUNI_INT64 MPI_Count; typedef
270 MPIUni_PETSC_EXTERN int MPIUNI_Memcpy(void *, const void *, MPI_Count);
/petsc/doc/developers/
H A Dstyle.md102 5. MPI 4.0 supports the use of `MPI_Count` (large count) for many MPI functions that previously use…
109 sizeof(MPI_Count) >= sizeof(PetscCount) >= sizeof(PetscInt)
111 sizeof(MPI_Count) may be strictly greater than sizeof(PetscInt64)
/petsc/src/sys/mpiuni/
H A Dmpi.c57 int MPIUNI_Memcpy(void *dst, const void *src, MPI_Count n) in MPIUNI_Memcpy()