Lines Matching refs:interpolated
1537 DMPlexInterpolatedFlag interpolated; in DMPlexInterpolate() local
1550 PetscCall(DMPlexIsInterpolated(dm, &interpolated)); in DMPlexInterpolate()
1551 …PetscCheck(interpolated != DMPLEX_INTERPOLATED_PARTIAL, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Not… in DMPlexInterpolate()
1552 if (interpolated == DMPLEX_INTERPOLATED_FULL) { in DMPlexInterpolate()
1647 plex->interpolated = plex->interpolatedCollective = DMPLEX_INTERPOLATED_FULL; in DMPlexInterpolate()
1795 DMPlexInterpolatedFlag interpolated; in DMPlexUninterpolate() local
1804 PetscCall(DMPlexIsInterpolated(dm, &interpolated)); in DMPlexUninterpolate()
1805 …PetscCheck(interpolated != DMPLEX_INTERPOLATED_PARTIAL, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Not… in DMPlexUninterpolate()
1806 if (interpolated == DMPLEX_INTERPOLATED_NONE || dim <= 1) { in DMPlexUninterpolate()
1890 plex->interpolated = plex->interpolatedCollective = DMPLEX_INTERPOLATED_NONE; in DMPlexUninterpolate()
1899 static PetscErrorCode DMPlexIsInterpolated_Internal(DM dm, DMPlexInterpolatedFlag *interpolated) in DMPlexIsInterpolated_Internal() argument
1910 *interpolated = DMPLEX_INTERPOLATED_FULL; in DMPlexIsInterpolated_Internal()
1918 *interpolated = DMPLEX_INTERPOLATED_PARTIAL; in DMPlexIsInterpolated_Internal()
1929 *interpolated = DMPLEX_INTERPOLATED_PARTIAL; in DMPlexIsInterpolated_Internal()
1935 *interpolated = DMPLEX_INTERPOLATED_NONE; in DMPlexIsInterpolated_Internal()
1937 *interpolated = DMPLEX_INTERPOLATED_PARTIAL; in DMPlexIsInterpolated_Internal()
1977 PetscErrorCode DMPlexIsInterpolated(DM dm, DMPlexInterpolatedFlag *interpolated) in DMPlexIsInterpolated() argument
1983 PetscAssertPointer(interpolated, 2); in DMPlexIsInterpolated()
1984 if (plex->interpolated < 0) { in DMPlexIsInterpolated()
1985 PetscCall(DMPlexIsInterpolated_Internal(dm, &plex->interpolated)); in DMPlexIsInterpolated()
1990 …interpolated, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Stashed DMPlexInterpolatedFlag %s is inconsistent … in DMPlexIsInterpolated()
1992 *interpolated = plex->interpolated; in DMPlexIsInterpolated()
2026 PetscErrorCode DMPlexIsInterpolatedCollective(DM dm, DMPlexInterpolatedFlag *interpolated) in DMPlexIsInterpolatedCollective() argument
2033 PetscAssertPointer(interpolated, 2); in DMPlexIsInterpolatedCollective()
2048 …=%s interpolatedCollective=%s\n", rank, DMPlexInterpolatedFlags[plex->interpolated], DMPlexInterpo… in DMPlexIsInterpolatedCollective()
2052 *interpolated = plex->interpolatedCollective; in DMPlexIsInterpolatedCollective()