Lines Matching refs:gdof
1980 PetscInt gdof;
1982 PetscCall(PetscSectionGetDof(sectionGlobal, p, &gdof));
1983 if (gdof > 0) {
2003 PetscInt gdof, goff;
2005 PetscCall(PetscSectionGetDof(sectionGlobal, p, &gdof));
2006 if (gdof > 0) {
3165 PetscInt dof, gdof, cdof, gcdof, off, goff, d, e;
3168 PetscCall(PetscSectionGetDof(gs, p, &gdof));
3174 if (!gdof || goff < 0) continue;
3175 PetscCheck(dof == gdof, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Inconsistent sizes, p: %" PetscInt_FMT " dof: %" PetscInt_FMT " gdof: %" PetscInt_FMT " cdof: %" PetscInt_FMT " gcdof: %" PetscInt_FMT, p, dof, gdof, cdof, gcdof);
3192 } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Inconsistent sizes, p: %" PetscInt_FMT " dof: %" PetscInt_FMT " gdof: %" PetscInt_FMT " cdof: %" PetscInt_FMT " gcdof: %" PetscInt_FMT, p, dof, gdof, cdof, gcdof);
4579 PetscInt dof, cdof, off, gdof, gcdof, goff, gsize, d;
4584 PetscCall(PetscSectionGetDof(globalSection, p, &gdof));
4587 if (!gdof) continue; /* Censored point */
4588 if ((gdof < 0 ? -(gdof + 1) : gdof) != dof) {
4589 PetscCall(PetscSynchronizedPrintf(comm, "[%d]Global dof %" PetscInt_FMT " for point %" PetscInt_FMT " not equal to local dof %" PetscInt_FMT "\n", rank, gdof, p, dof));
4596 if (gdof < 0) {
4597 gsize = gdof < 0 ? -(gdof + 1) - gcdof : gdof - gcdof;
4604 PetscCall(PetscSynchronizedPrintf(comm, "[%d]Point %" PetscInt_FMT " mapped to invalid process %" PetscInt_FMT " (%" PetscInt_FMT ", %" PetscInt_FMT ")\n", rank, p, r, gdof, goff));