Lines Matching refs:sfs
183 PetscSF *sfs; in CreateSFs_Irregular() local
189 PetscCall(PetscMalloc1(ctx->nsfs, &sfs)); in CreateSFs_Irregular()
214 sfs[i] = sf; in CreateSFs_Irregular()
216 *newSFs = sfs; in CreateSFs_Irregular()
226 PetscSF *sfs; in CreateSFs_Regular() local
231 PetscCall(PetscCalloc1(ctx->nsfs, &sfs)); in CreateSFs_Regular()
291 sfs[i] = sf; in CreateSFs_Regular()
293 *newSFs = sfs; in CreateSFs_Regular()
298 PetscErrorCode DestroySFs(AppCtx *ctx, PetscSF *sfs[]) in DestroySFs() argument
303 for (i = 0; i < ctx->nsfs; i++) PetscCall(PetscSFDestroy(&(*sfs)[i])); in DestroySFs()
304 PetscCall(PetscFree(*sfs)); in DestroySFs()
313 PetscSF *sfs = NULL; in main() local
323 PetscCall(CreateSFs_Irregular(ctx, &sfs, &leafOffsets)); in main()
325 PetscCall(CreateSFs_Regular(ctx, &sfs, &leafOffsets)); in main()
327 PetscCall(PetscSFConcatenate(comm, ctx->nsfs, sfs, ctx->rootMode, leafOffsets, &sf)); in main()
341 PetscCall(DestroySFs(ctx, &sfs)); in main()