Lines Matching refs:targetSection
8 PetscSection partSection, vertexSection = NULL, targetSection = NULL; in main() local
44 PetscCall(PetscSectionCreate(PETSC_COMM_WORLD, &targetSection)); in main()
45 PetscCall(PetscSectionSetChart(targetSection, 0, nparts)); in main()
46 for (i = 0; i < nparts; i++) PetscCall(PetscSectionSetDof(targetSection, i, 1)); in main()
47 PetscCall(PetscSectionSetUp(targetSection)); in main()
73 …PetscCall(PetscPartitionerPartition(p, nparts, 0, NULL, NULL, vertexSection, NULL, targetSection, … in main()
87 …PetscCall(PetscPartitionerPartition(p, nparts, nv, vv, vadj, vertexSection, NULL, targetSection, p… in main()
89 …scPartitionerPartition(p, nparts, 0, NULL, NULL, vertexSection, NULL, targetSection, partSection, … in main()
104 …PetscCall(PetscPartitionerPartition(p, nparts, 0, NULL, NULL, NULL, NULL, targetSection, partSecti… in main()
113 …PetscCall(PetscPartitionerPartition(p, nparts, nv, vv, pvadj, NULL, NULL, targetSection, partSecti… in main()
127 PetscCall(PetscSectionDestroy(&targetSection)); in main()