#if !defined(_SFALLGATHERV_H) #define _SFALLGATHERV_H #include /*I "petscsf.h" I*/ #include <../src/vec/is/sf/impls/basic/sfpack.h> #include <../src/vec/is/sf/impls/basic/sfbasic.h> typedef struct _n_PetscSFPack_Allgatherv *PetscSFPack_Allgatherv; struct _n_PetscSFPack_Allgatherv { SFPACKHEADER; char *root; /* root buffer */ char *leaf; /* leaf buffer */ MPI_Request request; }; typedef struct { SFBASICHEADER; PetscMPIInt *displs,*recvcounts; } PetscSF_Allgatherv; PETSC_INTERN PetscErrorCode PetscSFSetUp_Allgatherv(PetscSF); PETSC_INTERN PetscErrorCode PetscSFPackGet_Allgatherv(PetscSF,MPI_Datatype,const void*,const void*,PetscSFPack_Allgatherv*); PETSC_INTERN PetscErrorCode PetscSFReset_Allgatherv(PetscSF); PETSC_INTERN PetscErrorCode PetscSFDestroy_Allgatherv(PetscSF); PETSC_INTERN PetscErrorCode PetscSFBcastAndOpEnd_Allgatherv(PetscSF,MPI_Datatype,const void*,void*,MPI_Op); PETSC_INTERN PetscErrorCode PetscSFReduceEnd_Allgatherv(PetscSF,MPI_Datatype,const void*,void*,MPI_Op); PETSC_INTERN PetscErrorCode PetscSFFetchAndOpBegin_Allgatherv(PetscSF sf,MPI_Datatype unit,void *rootdata,const void *leafdata,void *leafupdate,MPI_Op op); PETSC_INTERN PetscErrorCode PetscSFFetchAndOpEnd_Allgatherv(PetscSF,MPI_Datatype,void*,const void*,void*,MPI_Op); PETSC_INTERN PetscErrorCode PetscSFGetRootRanks_Allgatherv(PetscSF,PetscInt*,const PetscMPIInt**,const PetscInt**,const PetscInt**,const PetscInt**); PETSC_INTERN PetscErrorCode PetscSFGetLeafRanks_Allgatherv(PetscSF,PetscInt*,const PetscMPIInt**,const PetscInt**,const PetscInt**); PETSC_INTERN PetscErrorCode PetscSFCreateLocalSF_Allgatherv(PetscSF,PetscSF*); PETSC_INTERN PetscErrorCode PetscSFGetGraph_Allgatherv(PetscSF,PetscInt*,PetscInt*,const PetscInt**,const PetscSFNode**); #endif