Lines Matching refs:MPIU_Count

1943 typedef MPI_Count MPIU_Count;  typedef
1945 typedef PetscInt64 MPIU_Count; typedef
1967 static inline PetscErrorCode PetscIntCast(MPIU_Count a, PetscInt *b) in PetscIntCast()
1971 …PetscCheck(sizeof(MPIU_Count) <= sizeof(PetscInt) || (a <= (MPIU_Count)PETSC_INT_MAX && a >= (MPIU… in PetscIntCast()
1995 static inline PetscErrorCode PetscBLASIntCast(MPIU_Count a, PetscBLASInt *b) in PetscBLASIntCast()
1999 …PetscCheck(sizeof(MPIU_Count) <= sizeof(PetscBLASInt) || a <= (MPIU_Count)PETSC_BLAS_INT_MAX, PETS… in PetscBLASIntCast()
2023 static inline PetscErrorCode PetscCuBLASIntCast(MPIU_Count a, PetscCuBLASInt *b) in PetscCuBLASIntCast()
2027 …PetscCheck(sizeof(MPIU_Count) <= sizeof(PetscCuBLASInt) || a <= (MPIU_Count)PETSC_CUBLAS_INT_MAX, … in PetscCuBLASIntCast()
2051 static inline PetscErrorCode PetscHipBLASIntCast(MPIU_Count a, PetscHipBLASInt *b) in PetscHipBLASIntCast()
2055 …PetscCheck(sizeof(MPIU_Count) <= sizeof(PetscHipBLASInt) || a <= (MPIU_Count)PETSC_HIPBLAS_INT_MAX… in PetscHipBLASIntCast()
2077 static inline PetscErrorCode PetscMPIIntCast(MPIU_Count a, PetscMPIInt *b) in PetscMPIIntCast()
2081 …PetscCheck(a <= (MPIU_Count)PETSC_MPI_INT_MAX && a >= (MPIU_Count)PETSC_MPI_INT_MIN, PETSC_COMM_SE… in PetscMPIIntCast()
2101 static inline PetscErrorCode PetscCIntCast(MPIU_Count a, int *b) in PetscCIntCast()
2721 if (PetscUnlikely(a > (MPIU_Count)PETSC_MPI_INT_MAX)) return MPI_ERR_COUNT; \
2735 static inline PetscMPIInt MPIU_Send(const void *buf, MPIU_Count count, MPI_Datatype dtype, PetscMPI… in MPIU_Send()
2744 static inline PetscMPIInt MPIU_Send_init(const void *buf, MPIU_Count count, MPI_Datatype dtype, Pet… in MPIU_Send_init()
2753 static inline PetscMPIInt MPIU_Isend(const void *buf, MPIU_Count count, MPI_Datatype dtype, PetscMP… in MPIU_Isend()
2762 static inline PetscMPIInt MPIU_Recv(const void *buf, MPIU_Count count, MPI_Datatype dtype, PetscMPI… in MPIU_Recv()
2771 static inline PetscMPIInt MPIU_Recv_init(const void *buf, MPIU_Count count, MPI_Datatype dtype, Pet… in MPIU_Recv_init()
2780 static inline PetscMPIInt MPIU_Irecv(const void *buf, MPIU_Count count, MPI_Datatype dtype, PetscMP… in MPIU_Irecv()
2789 static inline PetscMPIInt MPIU_Reduce(const void *inbuf, void *outbuf, MPIU_Count count, MPI_Dataty… in MPIU_Reduce()
2799 static inline PetscMPIInt MPIU_Reduce_local(const void *inbuf, void *inoutbuf, MPIU_Count count, MP… in MPIU_Reduce_local()
2894 PETSC_EXTERN PetscMPIInt MPIU_Allreduce_Private(const void *, void *, MPIU_Count, MPI_Datatype, …