Home
last modified time | relevance | path

Searched refs:sweeps (Results 1 – 9 of 9) sorted by relevance

/petsc/src/snes/impls/gs/
H A Dsnesgs.c108 PetscErrorCode SNESNGSSetSweeps(SNES snes, PetscInt sweeps) in SNESNGSSetSweeps() argument
114 gs->sweeps = sweeps; in SNESNGSSetSweeps()
131 PetscErrorCode SNESNGSGetSweeps(SNES snes, PetscInt *sweeps) in SNESNGSGetSweeps() argument
137 *sweeps = gs->sweeps; in SNESNGSGetSweeps()
171 PetscInt sweeps, max_its = PETSC_CURRENT; in SNESSetFromOptions_NGS() local
178 …-snes_ngs_sweeps", "Number of sweeps of GS to apply", "SNESComputeGS", gs->sweeps, &sweeps, &flg)); in SNESSetFromOptions_NGS()
179 if (flg) PetscCall(SNESNGSSetSweeps(snes, sweeps)); in SNESSetFromOptions_NGS()
338 gs->sweeps = 1; in SNESCreate_NGS()
H A Dgsimpl.h7 …PetscInt sweeps; /* number of sweeps through the local subdomain before neighbor communicati… member
/petsc/src/snes/tutorials/
H A Dex5.c517 PetscInt i, j, k, Mx, My, xs, ys, xm, ym, its, tot_its, sweeps, l; in NonlinearGS() local
527 PetscCall(SNESNGSGetSweeps(snes, &sweeps)); in NonlinearGS()
543 for (l = 0; l < sweeps; l++) { in NonlinearGS()
H A Dex55.c461 PetscInt i, j, k, Mx, My, xs, ys, xm, ym, its, tot_its, sweeps, l; in NonlinearGS() local
471 PetscCall(SNESNGSGetSweeps(snes, &sweeps)); in NonlinearGS()
487 for (l = 0; l < sweeps; l++) { in NonlinearGS()
H A Dex19.c376 PetscInt sweeps; in NonlinearGS() local
398 PetscCall(SNESNGSGetSweeps(snes, &sweeps)); in NonlinearGS()
497 for (k = 0; k < sweeps; k++) { in NonlinearGS()
H A Dex15.c728 PetscInt i, j, k, xs, ys, xm, ym, its, tot_its, sweeps, l, m; in NonlinearGS() local
750 PetscCall(SNESNGSGetSweeps(snes, &sweeps)); in NonlinearGS()
762 for (l = 0; l < sweeps; l++) { in NonlinearGS()
/petsc/share/petsc/datafiles/meshes/
H A Dtestcase3D.cas1877 (dpm/erosion/smoothing/sweeps 1)
2035 (dpm/boundary-face-smoothing/number-of-sweeps 3)
2818 (solver/precondition/max-sweeps 1)
2887 (amg/relax-sweeps 2)
2965 (delh/n-sweeps 5)
5588 (s2s/n-sweeps 5)
5605 (dtrm/n-sweeps 5)
7097 (overset/adapt/sweeps 2)
7549 (parallel/htc/acc-do-sweeps-before-convergence-check 1)
7552 (parallel/htc/acc-do-sweeps 20)
[all …]
/petsc/doc/manual/
H A Dksp.md841 smoothing sweeps on a process before doing a ghost point update from the
843 total number of SOR sweeps is given by `its*lits`. The third command
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DMat.pyx3966 """Compute relaxation (SOR, Gauss-Seidel) sweeps.