Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 25 of 27) sorted by relevance

12

/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A D_typing.py71 PoolImpl = TypeVar('PoolImpl', bound=WorkerPoolBase)
122 SectionImpl = TypeVar('SectionImpl', bound=SectionBase)
123 PetscDocStringImpl = TypeVar('PetscDocStringImpl', bound=PetscDocString)
124 SynopsisImpl = TypeVar('SynopsisImpl', bound=Synopsis)
134 ExceptionKind = TypeVar('ExceptionKind', bound=Exception)
/petsc/src/ksp/pc/tutorials/
H A Dex4.c161 Vec bound, x, b, Qdiag, DVec; in main() local
190 PetscCall(VecCreate(PETSC_COMM_SELF, &bound)); in main()
191 PetscCall(PetscObjectSetName((PetscObject)bound, "bound")); in main()
192 PetscCall(VecSetType(bound, VECSEQ)); in main()
193 PetscCall(VecLoad(bound, viewer)); in main()
195 PetscCall(VecGetLocalSize(bound, &boundary_indices_size)); in main()
196 PetscCall(VecGetArray(bound, &boundary_indices_values)); in main()
226 if (rank == 0) PetscCall(VecRestoreArray(bound, &boundary_indices_values)); in main()
337 if (rank == 0) PetscCall(VecDestroy(&bound)); in main()
/petsc/
H A D.gitignore151 src/tao/bound/tutorials/plate2
152 src/tao/bound/tutorials/jbearing2
153 src/tao/bound/tutorials/plate2f
154 src/tao/bound/tutorials/jbearing2f
/petsc/src/tao/linesearch/impls/morethuente/
H A Dmorethuente.c367 PetscInt bound; in Tao_mcstep() local
386 bound = 1; in Tao_mcstep()
409 bound = 0; in Tao_mcstep()
435 bound = 1; in Tao_mcstep()
466 bound = 0; in Tao_mcstep()
507 if (mtP->bracket && bound) { in Tao_mcstep()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DConst.pyx23 For a parameter that is a bound, such as the maximum
24 number of iterations, do not bound the value.
H A DDMPlex.pyx476 The upper bound for mesh points.
497 The upper bound for mesh points.
1025 The upper bound for stratum points.
1052 The upper bound for stratum points.
H A DTAO.pyx2144 HALTED_UPPERBOUND = TAOLINESEARCH_HALTED_UPPERBOUND # stopped at upper bound
2145 HALTED_LOWERBOUND = TAOLINESEARCH_HALTED_LOWERBOUND # stopped at lower bound
H A DVec.pyx1410 """Return whether the vector has been bound to the CPU.
/petsc/doc/changes/
H A D310.md122 - Added bound-constrained Newton-Krylov methods (BNLS, BNTR, BNTL).
124 - Added a bound-constrained quasi-Newton line search (BQNLS) method
H A D39.md128 Conjugate Gradient (BNCG) algorithms for bound constrained
/petsc/doc/tutorials/
H A Dindex.md30 …- <a href="PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/tao/bound/tutorials/index.html">Bound</a> (Manual: {…
/petsc/doc/manual/
H A Dtao.md144 bound-constrained problems. Note that the `TaoType` variable is a string that
445 upper bounds, respectively. When no upper or lower bound exists for a
446 variable, the bound may be set to `PETSC_INFINITY` or `PETSC_NINFINITY`.
447 After the two bound vectors have been set, they may be accessed with the
450 Since not all solvers recognize the presence of bound constraints on
557 function for bound-constrained problems) is sufficiently close to zero.
841 problems (unconstrained, bound-constrained, and PDE-constrained
1254 bound constrained and unconstrained problems.
1512 bound constrained and unconstrained problems.
1525 can solve both bound constrained and unconstrained problems.
[all …]
H A Dperformance.md90 bandwidth-bound PETSc applications of at most 4x when running multiple
216 In this configuration, process 0 is bound to the first physical core on
217 the first socket (with IDs 0 and 12), process 1 is bound to the first
325 are bound to the resources within each socket. Performance on the two
370 support different *orderings* in which MPI ranks should be bound to
H A Dregressor.md152 By default, bound-constrained regularized Gauss-Newton `TAOBRGN` is used to solve the underlying op…
H A Dfortran.md413 If you are using Fortran classes that have bound functions (methods) as in
H A Dsnes.md1350 `SNES` can also solve (differential) variational inequalities with box (bound) constraints.
/petsc/src/binding/petsc4py/src/lib-petsc/
H A Dcustom.h169 PetscBool bound; in VecGetCurrentMemType() local
175 PetscCall(VecBoundToCPU(v,&bound)); in VecGetCurrentMemType()
176 if (!bound) { in VecGetCurrentMemType()
/petsc/lib/petsc/bin/maint/
H A Dcheck_header_guard.py294 _T = TypeVar('_T', bound=Replacer)
H A Dtoclapack.sh2474 /* First compute LEXP and UEXP, two powers of 2 that bound */
2476 /* approximately to the bound that is closest to abs(EMIN). */
4465 /* First compute LEXP and UEXP, two powers of 2 that bound */
4467 /* approximately to the bound that is closest to abs(EMIN). */
/petsc/src/dm/impls/plex/generators/ctetgen/
H A Dctetgenerate.c12 PetscInt bound = numCells * numCorners, coff; in DMPlexInvertCells_CTetgen() local
21 for (coff = 0; coff < bound; coff += numCorners) SWAP(cells[coff], cells[coff + 1]); in DMPlexInvertCells_CTetgen()
/petsc/src/dm/impls/plex/generators/tetgen/
H A Dtetgenerate.cxx29 PetscInt bound = numCells * numCorners, coff; in DMPlexInvertCells_Tetgen() local
38 for (coff = 0; coff < bound; coff += numCorners) SWAP(cells[coff], cells[coff + 1]); in DMPlexInvertCells_Tetgen()
/petsc/src/dm/dt/interface/
H A Ddtds.c3894 PetscSimplePointFn *bound; in PetscDSCopyBounds() local
3903 PetscCall(PetscDSGetLowerBound(ds, f, &bound, &ctx)); in PetscDSCopyBounds()
3904 PetscCall(PetscDSSetLowerBound(newds, f, bound, ctx)); in PetscDSCopyBounds()
3905 PetscCall(PetscDSGetUpperBound(ds, f, &bound, &ctx)); in PetscDSCopyBounds()
3906 PetscCall(PetscDSSetUpperBound(newds, f, bound, ctx)); in PetscDSCopyBounds()
/petsc/src/ksp/ksp/tutorials/output/
H A Dex2_help.out70 …ormerly 0>: Set the size threshold (in local rows) below which the Mat is bound to the CPU (MatBin…
79 …erly 0>: Set the size threshold (in local entries) below which the Vec is bound to the CPU (VecBin…
/petsc/share/petsc/datafiles/meshes/
H A Dtestcase3D.cas203 (wetsteam/urf-bound 0.5)
1907 (dpm/volume-injection/show-bound-geom? #f)
4735 (species/mass-fraction-upper-bound 1.)
4737 (species/mass-fraction-lower-bound 0.)
5284 (species/bound-yi-source? #t)
6509 (narrow-gaps/modeling/sponge/lower-bound-limiting? #t)
8493 (bcd-bound-field? #f)
8494 (bcd-bound-expression "0.75")
/petsc/doc/faq/
H A Dindex.md1610 …Actual argument at (1) to assumed-type dummy is of derived type with type-bound or FINAL procedures

12