12eac72dbSBarry Smith /* 2f8256253SLois Curfman McInnes An index set is a generalization of a subset of integers. Index sets 3f8256253SLois Curfman McInnes are used for defining scatters and gathers. 42eac72dbSBarry Smith */ 50a835dfdSSatish Balay #if !defined(__PETSCIS_H) 60a835dfdSSatish Balay #define __PETSCIS_H 7d382aafbSBarry Smith #include "petscsys.h" 8a4d96a55SJed Brown #include "petscsf.h" 92eac72dbSBarry Smith 1097b48c8fSBarry Smith #define IS_FILE_CLASSID 1211218 11*014dd563SJed Brown PETSC_EXTERN PetscClassId IS_CLASSID; 12f0479e8cSBarry Smith 13*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISInitializePackage(const char[]); 142b6de112SBarry Smith 155c20da3cSBarry Smith /*S 16f22f69f0SBarry Smith IS - Abstract PETSc object that allows indexing. 175c20da3cSBarry Smith 185c20da3cSBarry Smith Level: beginner 195c20da3cSBarry Smith 205c20da3cSBarry Smith Concepts: indexing, stride 215c20da3cSBarry Smith 225c20da3cSBarry Smith .seealso: ISCreateGeneral(), ISCreateBlock(), ISCreateStride(), ISGetIndices(), ISDestroy() 235c20da3cSBarry Smith S*/ 24f09e8eb9SSatish Balay typedef struct _p_IS* IS; 252eac72dbSBarry Smith 2676bdecfbSBarry Smith /*J 2727bdab1eSBarry Smith ISType - String with the name of a PETSc vector or the creation function 2827bdab1eSBarry Smith with an optional dynamic library name, for example 2927bdab1eSBarry Smith http://www.mcs.anl.gov/petsc/lib.a:myveccreate() 3027bdab1eSBarry Smith 3127bdab1eSBarry Smith Level: beginner 3227bdab1eSBarry Smith 3327bdab1eSBarry Smith .seealso: ISSetType(), IS 3476bdecfbSBarry Smith J*/ 3527bdab1eSBarry Smith #define ISType char* 3627bdab1eSBarry Smith #define ISGENERAL "general" 3727bdab1eSBarry Smith #define ISSTRIDE "stride" 3827bdab1eSBarry Smith #define ISBLOCK "block" 3927bdab1eSBarry Smith 4027bdab1eSBarry Smith /* Dynamic creation and loading functions */ 41*014dd563SJed Brown PETSC_EXTERN PetscFList ISList; 42*014dd563SJed Brown PETSC_EXTERN PetscBool ISRegisterAllCalled; 43*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSetType(IS, const ISType); 44*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetType(IS, const ISType *); 45*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRegister(const char[],const char[],const char[],PetscErrorCode (*)(IS)); 46*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRegisterAll(const char []); 47*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRegisterDestroy(void); 48*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCreate(MPI_Comm,IS*); 4927bdab1eSBarry Smith 5027bdab1eSBarry Smith /*MC 5127bdab1eSBarry Smith ISRegisterDynamic - Adds a new vector component implementation 5227bdab1eSBarry Smith 5327bdab1eSBarry Smith Synopsis: 5427bdab1eSBarry Smith PetscErrorCode ISRegisterDynamic(const char *name, const char *path, const char *func_name, PetscErrorCode (*create_func)(IS)) 5527bdab1eSBarry Smith 5627bdab1eSBarry Smith Not Collective 5727bdab1eSBarry Smith 5827bdab1eSBarry Smith Input Parameters: 5927bdab1eSBarry Smith + name - The name of a new user-defined creation routine 6027bdab1eSBarry Smith . path - The path (either absolute or relative) of the library containing this routine 6127bdab1eSBarry Smith . func_name - The name of routine to create method context 6227bdab1eSBarry Smith - create_func - The creation routine itself 6327bdab1eSBarry Smith 6427bdab1eSBarry Smith Notes: 6527bdab1eSBarry Smith ISRegisterDynamic() may be called multiple times to add several user-defined vectors 6627bdab1eSBarry Smith 6727bdab1eSBarry Smith If dynamic libraries are used, then the fourth input argument (routine_create) is ignored. 6827bdab1eSBarry Smith 6927bdab1eSBarry Smith Sample usage: 7027bdab1eSBarry Smith .vb 71bb7a0047SJed Brown ISRegisterDynamic("my_is_name","/home/username/my_lib/lib/libO/solaris/libmy.a", "MyISCreate", MyISCreate); 7227bdab1eSBarry Smith .ve 7327bdab1eSBarry Smith 7427bdab1eSBarry Smith Then, your vector type can be chosen with the procedural interface via 7527bdab1eSBarry Smith .vb 7627bdab1eSBarry Smith ISCreate(MPI_Comm, IS *); 77bb7a0047SJed Brown ISSetType(IS,"my_is_name"); 7827bdab1eSBarry Smith .ve 7927bdab1eSBarry Smith or at runtime via the option 8027bdab1eSBarry Smith .vb 81bb7a0047SJed Brown -is_type my_is_name 8227bdab1eSBarry Smith .ve 8327bdab1eSBarry Smith 8427bdab1eSBarry Smith Notes: $PETSC_ARCH occuring in pathname will be replaced with appropriate values. 8527bdab1eSBarry Smith If your function is not being put into a shared library then use ISRegister() instead 8627bdab1eSBarry Smith 87bb7a0047SJed Brown This is no ISSetFromOptions() and the current implementations do not have a way to dynamically determine type, so 88bb7a0047SJed Brown dynamic registration of custom IS types will be of limited use to users. 89bb7a0047SJed Brown 90bb7a0047SJed Brown Level: developer 9127bdab1eSBarry Smith 9227bdab1eSBarry Smith .keywords: IS, register 9327bdab1eSBarry Smith .seealso: ISRegisterAll(), ISRegisterDestroy(), ISRegister() 9427bdab1eSBarry Smith M*/ 9527bdab1eSBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES) 9627bdab1eSBarry Smith #define ISRegisterDynamic(a,b,c,d) ISRegister(a,b,c,0) 9727bdab1eSBarry Smith #else 9827bdab1eSBarry Smith #define ISRegisterDynamic(a,b,c,d) ISRegister(a,b,c,d) 9927bdab1eSBarry Smith #endif 10027bdab1eSBarry Smith 101639f9d9dSBarry Smith /* 102639f9d9dSBarry Smith Default index set data structures that PETSc provides. 103639f9d9dSBarry Smith */ 104*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCreateGeneral(MPI_Comm,PetscInt,const PetscInt[],PetscCopyMode,IS *); 105*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGeneralSetIndices(IS,PetscInt,const PetscInt[],PetscCopyMode); 106*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCreateBlock(MPI_Comm,PetscInt,PetscInt,const PetscInt[],PetscCopyMode,IS *); 107*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISBlockSetIndices(IS,PetscInt,PetscInt,const PetscInt[],PetscCopyMode); 108*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCreateStride(MPI_Comm,PetscInt,PetscInt,PetscInt,IS *); 109*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISStrideSetStride(IS,PetscInt,PetscInt,PetscInt); 1104b0e389bSBarry Smith 111*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISDestroy(IS*); 112*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSetPermutation(IS); 113*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISPermutation(IS,PetscBool *); 114*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSetIdentity(IS); 115*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISIdentity(IS,PetscBool *); 116*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISContiguousLocal(IS,PetscInt,PetscInt,PetscInt*,PetscBool*); 11708480c60SBarry Smith 118*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetIndices(IS,const PetscInt *[]); 119*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRestoreIndices(IS,const PetscInt *[]); 120*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetTotalIndices(IS,const PetscInt *[]); 121*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRestoreTotalIndices(IS,const PetscInt *[]); 122*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetNonlocalIndices(IS,const PetscInt *[]); 123*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRestoreNonlocalIndices(IS,const PetscInt *[]); 124*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetNonlocalIS(IS, IS *is); 125*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISRestoreNonlocalIS(IS, IS *is); 126*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetSize(IS,PetscInt *); 127*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetLocalSize(IS,PetscInt *); 128*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISInvertPermutation(IS,PetscInt,IS*); 129*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISView(IS,PetscViewer); 130*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISEqual(IS,IS,PetscBool *); 131*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSort(IS); 132*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSorted(IS,PetscBool *); 133*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISDifference(IS,IS,IS*); 134*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSum(IS,IS,IS*); 135*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISExpand(IS,IS,IS*); 136612dd529SBarry Smith 137*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISBlockGetIndices(IS,const PetscInt *[]); 138*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISBlockRestoreIndices(IS,const PetscInt *[]); 139*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISBlockGetLocalSize(IS,PetscInt *); 140*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISBlockGetSize(IS,PetscInt *); 141*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGetBlockSize(IS,PetscInt*); 142*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISSetBlockSize(IS,PetscInt); 143c16cb8f2SBarry Smith 144*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISStrideGetInfo(IS,PetscInt *,PetscInt*); 145c16cb8f2SBarry Smith 146*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISToGeneral(IS); 14738f40f24SLois Curfman McInnes 148*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISDuplicate(IS,IS*); 149*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCopy(IS,IS); 150*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISAllGather(IS,IS*); 151*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISComplement(IS,PetscInt,PetscInt,IS*); 152*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISConcatenate(MPI_Comm,PetscInt,const IS[],IS*); 153*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISListToColoring(MPI_Comm,PetscInt, IS[],IS*,IS*); 154*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISColoringToList(IS, IS, PetscInt*, IS *[]); 155*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISOnComm(IS,MPI_Comm,PetscCopyMode,IS*); 156d64ed03dSBarry Smith 15756cd22aeSBarry Smith /* --------------------------------------------------------------------------*/ 158*014dd563SJed Brown PETSC_EXTERN PetscClassId IS_LTOGM_CLASSID; 15956cd22aeSBarry Smith 1605c20da3cSBarry Smith /*S 161d9ffb7b8SBarry Smith ISLocalToGlobalMapping - mappings from an arbitrary 16290f02eecSBarry Smith local ordering from 0 to n-1 to a global PETSc ordering 163d4bb536fSBarry Smith used by a vector or matrix. 164d4bb536fSBarry Smith 1655c20da3cSBarry Smith Level: intermediate 1665c20da3cSBarry Smith 167d4bb536fSBarry Smith Note: mapping from Local to Global is scalable; but Global 168eec0b4cfSBarry Smith to Local may not be if the range of global values represented locally 169d4bb536fSBarry Smith is very large. 17074637425SBarry Smith 17174637425SBarry Smith Note: the ISLocalToGlobalMapping is actually a private object; it is included 172992144d0SBarry Smith here for the inline function ISLocalToGlobalMappingApply() to allow it to be inlined since 17374637425SBarry Smith it is used so often. 17474637425SBarry Smith 1755c20da3cSBarry Smith .seealso: ISLocalToGlobalMappingCreate() 1765c20da3cSBarry Smith S*/ 17774637425SBarry Smith struct _p_ISLocalToGlobalMapping{ 178011f5a45SSatish Balay PETSCHEADER(int); 17932dcc486SBarry Smith PetscInt n; /* number of local indices */ 18032dcc486SBarry Smith PetscInt *indices; /* global index of each local index */ 18132dcc486SBarry Smith PetscInt globalstart; /* first global referenced in indices */ 18232dcc486SBarry Smith PetscInt globalend; /* last + 1 global referenced in indices */ 18332dcc486SBarry Smith PetscInt *globals; /* local index for each global index between start and end */ 18474637425SBarry Smith }; 185f09e8eb9SSatish Balay typedef struct _p_ISLocalToGlobalMapping* ISLocalToGlobalMapping; 1865c20da3cSBarry Smith 1875c20da3cSBarry Smith /*E 1885c20da3cSBarry Smith ISGlobalToLocalMappingType - Indicates if missing global indices are 1895c20da3cSBarry Smith 1905c20da3cSBarry Smith IS_GTOLM_MASK - missing global indices are replaced with -1 1915c20da3cSBarry Smith IS_GTOLM_DROP - missing global indices are dropped 1925c20da3cSBarry Smith 1935c20da3cSBarry Smith Level: beginner 1945c20da3cSBarry Smith 1955c20da3cSBarry Smith .seealso: ISGlobalToLocalMappingApply() 1965c20da3cSBarry Smith 1975c20da3cSBarry Smith E*/ 198987e4450SSatish Balay typedef enum {IS_GTOLM_MASK,IS_GTOLM_DROP} ISGlobalToLocalMappingType; 19990f02eecSBarry Smith 200*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingCreate(MPI_Comm,PetscInt,const PetscInt[],PetscCopyMode,ISLocalToGlobalMapping*); 201*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingCreateIS(IS,ISLocalToGlobalMapping *); 202*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingCreateSF(PetscSF,PetscInt,ISLocalToGlobalMapping*); 203*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingView(ISLocalToGlobalMapping,PetscViewer); 204*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingDestroy(ISLocalToGlobalMapping*); 205*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingApplyIS(ISLocalToGlobalMapping,IS,IS*); 206*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISGlobalToLocalMappingApply(ISLocalToGlobalMapping,ISGlobalToLocalMappingType,PetscInt,const PetscInt[],PetscInt*,PetscInt[]); 207*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingGetSize(ISLocalToGlobalMapping,PetscInt*); 208*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingGetInfo(ISLocalToGlobalMapping,PetscInt*,PetscInt*[],PetscInt*[],PetscInt**[]); 209*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingRestoreInfo(ISLocalToGlobalMapping,PetscInt*,PetscInt*[],PetscInt*[],PetscInt**[]); 210*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingGetIndices(ISLocalToGlobalMapping,const PetscInt**); 211*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingRestoreIndices(ISLocalToGlobalMapping,const PetscInt**); 212*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingBlock(ISLocalToGlobalMapping,PetscInt,ISLocalToGlobalMapping*); 213*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingUnBlock(ISLocalToGlobalMapping,PetscInt,ISLocalToGlobalMapping*); 214*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISLocalToGlobalMappingConcatenate(MPI_Comm,PetscInt,const ISLocalToGlobalMapping[],ISLocalToGlobalMapping*); 21574637425SBarry Smith 216fcfd50ebSBarry Smith #undef __FUNCT__ 217fcfd50ebSBarry Smith #define __FUNCT__ "ISLocalToGlobalMappingApply" 218d0f46423SBarry Smith PETSC_STATIC_INLINE PetscErrorCode ISLocalToGlobalMappingApply(ISLocalToGlobalMapping mapping,PetscInt N,const PetscInt in[],PetscInt out[]) 219d0f46423SBarry Smith { 22053ef36baSBarry Smith PetscInt i,Nmax = mapping->n; 22153ef36baSBarry Smith const PetscInt *idx = mapping->indices; 222b7827b44SJed Brown PetscFunctionBegin; 2231620fd73SBarry Smith for (i=0; i<N; i++) { 2241620fd73SBarry Smith if (in[i] < 0) {out[i] = in[i]; continue;} 225e32f2f54SBarry Smith if (in[i] >= Nmax) SETERRQ3(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Local index %D too large %D (max) at %D",in[i],Nmax,i); 2261620fd73SBarry Smith out[i] = idx[in[i]]; 2271620fd73SBarry Smith } 2281620fd73SBarry Smith PetscFunctionReturn(0); 22974637425SBarry Smith } 23090f02eecSBarry Smith 23156cd22aeSBarry Smith /* --------------------------------------------------------------------------*/ 232b9617806SBarry Smith /*E 233b9617806SBarry Smith ISColoringType - determines if the coloring is for the entire parallel grid/graph/matrix 234b9617806SBarry Smith or for just the local ghosted portion 235b9617806SBarry Smith 236b9617806SBarry Smith Level: beginner 237b9617806SBarry Smith 2388ee2e534SBarry Smith $ IS_COLORING_GLOBAL - does not include the colors for ghost points, this is used when the function 2398ee2e534SBarry Smith $ is called synchronously in parallel. This requires generating a "parallel coloring". 2408ee2e534SBarry Smith $ IS_COLORING_GHOSTED - includes colors for ghost points, this is used when the function can be called 2418ee2e534SBarry Smith $ seperately on individual processes with the ghost points already filled in. Does not 2428ee2e534SBarry Smith $ require a "parallel coloring", rather each process colors its local + ghost part. 2438ee2e534SBarry Smith $ Using this can result in much less parallel communication. In the paradigm of 2449a42bb27SBarry Smith $ DMGetLocalVector() and DMGetGlobalVector() this could be called IS_COLORING_LOCAL 24573d7d85fSBarry Smith 246e727c939SJed Brown .seealso: DMCreateColoring() 247b9617806SBarry Smith E*/ 2488ee2e534SBarry Smith typedef enum {IS_COLORING_GLOBAL,IS_COLORING_GHOSTED} ISColoringType; 249*014dd563SJed Brown PETSC_EXTERN const char *ISColoringTypes[]; 2506c09f170SSatish Balay typedef unsigned PETSC_IS_COLOR_VALUE_TYPE ISColoringValue; 251*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISAllGatherColors(MPI_Comm,PetscInt,ISColoringValue*,PetscInt*,ISColoringValue*[]); 252dde82324SBarry Smith 2535c20da3cSBarry Smith /*S 254dde82324SBarry Smith ISColoring - sets of IS's that define a coloring 255639f9d9dSBarry Smith of the underlying indices 2565c20da3cSBarry Smith 2575c20da3cSBarry Smith Level: intermediate 2585c20da3cSBarry Smith 2595c20da3cSBarry Smith Notes: 260b9617806SBarry Smith One should not access the *is records below directly because they may not yet 2615c20da3cSBarry Smith have been created. One should use ISColoringGetIS() to make sure they are 2625c20da3cSBarry Smith created when needed. 2635c20da3cSBarry Smith 264a5057860SBarry Smith Developer Note: this is not a PetscObject 265a5057860SBarry Smith 2665c20da3cSBarry Smith .seealso: ISColoringCreate(), ISColoringGetIS(), ISColoringView(), ISColoringGetIS() 2675c20da3cSBarry Smith S*/ 26895fbd943SSatish Balay struct _n_ISColoring { 269a7cc72afSBarry Smith PetscInt refct; 270a7cc72afSBarry Smith PetscInt n; /* number of colors */ 2715c20da3cSBarry Smith IS *is; /* for each color indicates columns */ 272639f9d9dSBarry Smith MPI_Comm comm; 27308b6dcc0SBarry Smith ISColoringValue *colors; /* for each column indicates color */ 27432dcc486SBarry Smith PetscInt N; /* number of columns */ 275b9617806SBarry Smith ISColoringType ctype; 276639f9d9dSBarry Smith }; 27795fbd943SSatish Balay typedef struct _n_ISColoring* ISColoring; 278639f9d9dSBarry Smith 279*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISColoringCreate(MPI_Comm,PetscInt,PetscInt,const ISColoringValue[],ISColoring*); 280*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISColoringDestroy(ISColoring*); 281*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISColoringView(ISColoring,PetscViewer); 282*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISColoringGetIS(ISColoring,PetscInt*,IS*[]); 283*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISColoringRestoreIS(ISColoring,IS*[]); 2843a7fca6bSBarry Smith #define ISColoringReference(coloring) ((coloring)->refct++,0) 2853a7fca6bSBarry Smith #define ISColoringSetType(coloring,type) ((coloring)->ctype = type,0) 2863a7fca6bSBarry Smith 287dbef8a1cSBarry Smith /* --------------------------------------------------------------------------*/ 288dbef8a1cSBarry Smith 289*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISPartitioningToNumbering(IS,IS*); 290*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISPartitioningCount(IS,PetscInt,PetscInt[]); 291dbef8a1cSBarry Smith 292*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCompressIndicesGeneral(PetscInt,PetscInt,PetscInt,PetscInt,const IS[],IS[]); 293*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISCompressIndicesSorted(PetscInt,PetscInt,PetscInt,const IS[],IS[]); 294*014dd563SJed Brown PETSC_EXTERN PetscErrorCode ISExpandIndicesGeneral(PetscInt,PetscInt,PetscInt,PetscInt,const IS[],IS[]); 295d9489beaSHong Zhang 2969e03d832SJed Brown 2979e03d832SJed Brown /* Reset __FUNCT__ in case the user does not define it themselves */ 2989e03d832SJed Brown #undef __FUNCT__ 2999e03d832SJed Brown #define __FUNCT__ "User provided function" 3009e03d832SJed Brown 301a2ce50c7SBarry Smith #endif 302