1 #if !defined(_SFALLGATHERV_H) 2 #define _SFALLGATHERV_H 3 4 #include <petsc/private/sfimpl.h> /*I "petscsf.h" I*/ 5 #include <../src/vec/is/sf/impls/basic/sfpack.h> 6 #include <../src/vec/is/sf/impls/basic/sfbasic.h> 7 8 typedef struct _n_PetscSFPack_Allgatherv *PetscSFPack_Allgatherv; 9 struct _n_PetscSFPack_Allgatherv { 10 SFPACKHEADER; 11 MPI_Request request; 12 }; 13 14 typedef struct { 15 SFBASICHEADER; 16 PetscMPIInt *displs,*recvcounts; 17 } PetscSF_Allgatherv; 18 19 PETSC_INTERN PetscErrorCode PetscSFSetUp_Allgatherv(PetscSF); 20 PETSC_INTERN PetscErrorCode PetscSFPackGet_Allgatherv(PetscSF,MPI_Datatype,const void*,const void*,PetscSFPack_Allgatherv*); 21 PETSC_INTERN PetscErrorCode PetscSFReset_Allgatherv(PetscSF); 22 PETSC_INTERN PetscErrorCode PetscSFDestroy_Allgatherv(PetscSF); 23 PETSC_INTERN PetscErrorCode PetscSFBcastAndOpEnd_Allgatherv(PetscSF,MPI_Datatype,const void*,void*,MPI_Op); 24 PETSC_INTERN PetscErrorCode PetscSFReduceEnd_Allgatherv(PetscSF,MPI_Datatype,const void*,void*,MPI_Op); 25 PETSC_INTERN PetscErrorCode PetscSFFetchAndOpBegin_Allgatherv(PetscSF sf,MPI_Datatype unit,void *rootdata,const void *leafdata,void *leafupdate,MPI_Op op); 26 PETSC_INTERN PetscErrorCode PetscSFFetchAndOpEnd_Allgatherv(PetscSF,MPI_Datatype,void*,const void*,void*,MPI_Op); 27 PETSC_INTERN PetscErrorCode PetscSFGetRootRanks_Allgatherv(PetscSF,PetscInt*,const PetscMPIInt**,const PetscInt**,const PetscInt**,const PetscInt**); 28 PETSC_INTERN PetscErrorCode PetscSFGetLeafRanks_Allgatherv(PetscSF,PetscInt*,const PetscMPIInt**,const PetscInt**,const PetscInt**); 29 PETSC_INTERN PetscErrorCode PetscSFCreateLocalSF_Allgatherv(PetscSF,PetscSF*); 30 PETSC_INTERN PetscErrorCode PetscSFGetGraph_Allgatherv(PetscSF,PetscInt*,PetscInt*,const PetscInt**,const PetscSFNode**); 31 #endif 32