| /petsc/src/sys/classes/draw/impls/x/ |
| H A D | xcolor.c | 44 PetscBool fast = PETSC_FALSE; in PetscDrawSetUpColormap_Shared() local 60 PetscCall(PetscOptionsGetBool(NULL, NULL, "-draw_fast", &fast, NULL)); in PetscDrawSetUpColormap_Shared() 68 if (!fast) XAllocColor(display, gColormap, &colordef); in PetscDrawSetUpColormap_Shared() 95 PetscBool fast = PETSC_FALSE; in PetscDrawSetUpColormap_Private() local 127 PetscCall(PetscOptionsGetBool(NULL, NULL, "-draw_fast", &fast, NULL)); in PetscDrawSetUpColormap_Private() 135 if (!fast) { in PetscDrawSetUpColormap_Private() 186 PetscBool fast = PETSC_FALSE; in PetscDrawSetColormap_X() local 189 PetscCall(PetscOptionsGetBool(NULL, NULL, "-draw_fast", &fast, NULL)); in PetscDrawSetColormap_X() 193 XiWin->cmapsize = fast ? PETSC_DRAW_BASIC_COLORS : PETSC_DRAW_MAXCOLOR; in PetscDrawSetColormap_X()
|
| /petsc/src/mat/impls/nest/ |
| H A D | matnest.c | 2028 PetscBool fast; in MatConvert_Nest_AIJ() local 2030 PetscCall(PetscStrcmp(newtype, MATAIJ, &fast)); in MatConvert_Nest_AIJ() 2031 if (!fast) PetscCall(PetscStrcmp(newtype, MATSEQAIJ, &fast)); in MatConvert_Nest_AIJ() 2032 for (i = 0; i < nest->nr && fast; ++i) { in MatConvert_Nest_AIJ() 2033 for (j = 0; j < nest->nc && fast; ++j) { in MatConvert_Nest_AIJ() 2036 PetscCall(PetscObjectTypeCompare((PetscObject)B, MATSEQAIJ, &fast)); in MatConvert_Nest_AIJ() 2037 if (!fast) { in MatConvert_Nest_AIJ() 2045 PetscCall(PetscObjectTypeCompare((PetscObject)Bt, MATSEQAIJ, &fast)); in MatConvert_Nest_AIJ() 2052 PetscCall(PetscObjectTypeCompare((PetscObject)Bt, MATSEQAIJ, &fast)); in MatConvert_Nest_AIJ() 2055 …if (fast) fast = (PetscBool)(!((Mat_Shell *)B->data)->zrows && !((Mat_Shell *)B->data)->zcols && !… in MatConvert_Nest_AIJ() [all …]
|
| /petsc/doc/manual/ |
| H A D | ts.md | 679 ## IMEX Methods for fast-slow systems 681 Consider a fast-slow ODE system 685 \dot{u}^{slow} & = f^{slow}(t, u^{slow},u^{fast}) \\ 686 M \dot{u}^{fast} & = g^{fast}(t, u^{slow},u^{fast}) + f^{fast}(t, u^{slow},u^{fast}) 690 where $u^{slow}$ is the slow component and $u^{fast}$ is the 691 fast component. The fast component can be partitioned additively as 693 $f^{fast}()$ explicitly and the other terms implicitly when using 696 - `TSARKIMEXSetFastSlowSplit()` informs PETSc to use ARKIMEX to solve a fast-slow system. 697 - `TSRHSSplitSetIS()` specifies the index set for the slow/fast components. 698 …SSplitSetRHSFunction()` specifies the parts to be handled explicitly $f^{slow}()$ and $f^{fast}()$. [all …]
|
| H A D | dmplex.md | 109 In order to support efficient queries, we construct fast
|
| H A D | performance.md | 462 optimization (`-fast` or `-Ofast` in many compilers). These are
|
| H A D | snes.md | 971 retain fast local convergence of the Newton’s iterates, use of excessive
|
| H A D | ksp.md | 1237 overly expensive solver per iteration and too fast coarsening will
|
| /petsc/doc/install/ |
| H A D | external_software.md | 17 …pport/knowledgecenter/en/SSFHY8/essl_welcome.html) IBM's math library for fast sparse direct LU fa…
|
| /petsc/doc/changes/ |
| H A D | 39.md | 65 - Added a new Mat type MATSELL, featuring a fast MatMult() kernel on
|
| H A D | 322.md | 145 - Add a new ARKIMEX solver for fast-slow systems that are partitioned component-wise and additively…
|
| H A D | 33.md | 7 installed (enabling parallel builds and fast incremental builds),
|
| H A D | 320.md | 133 - Add `MATSELLCUDA`. It supports fast `MatMult()`, `MatMultTranspose()`, and `MatMultAdd()` on GPUs
|
| H A D | 319.md | 172 …tines. These are no longer needed since non-preallocated matrices will now be as fast as using them
|
| H A D | 2024.md | 366 ethernet or fast ethernet.
|
| /petsc/doc/developers/ |
| H A D | documentation.md | 211 …used branch of the upstream images repository, adding this image [^maintainer-fast-image-footnote]. 283 [^maintainer-fast-image-footnote]: Maintainers may directly push commits.
|
| /petsc/doc/developers/contributing/ |
| H A D | developingmr.md | 197 …u may wish to [make it impossible to perform these usually-undesired "non fast-forward" merges whe…
|
| /petsc/src/ksp/ksp/tutorials/output/ |
| H A D | ex2_help.out | 265 …-ksp_gmres_classicalgramschmidt: classical (unmodified) Gram-Schmidt (fast) (KSPGMRESSetOrthogonal…
|
| /petsc/share/petsc/datafiles/meshes/ |
| H A D | testcase3D.cas | 2807 (solver/mode/fast #f) 5422 (disco/fast-second-order? #f) 5561 (s2s/fast-parallel? #t) 6463 (narrow-gaps/optimization/fast-grad? #t) 7065 (ost/lsf-fast? #t) 7505 (partition/auto/fast? #t) 7563 (parallel/neighborhood/fast-corner? #t) 7598 (parallel/fast-read-section? #t) 7599 (parallel/fast-read-case? #t) 7600 (parallel/fast-io? #f) [all …]
|
| /petsc/doc/faq/ |
| H A D | index.md | 36 computers are not bottlenecked by how fast they can perform 170 7. **We have a rich, robust, and fast bug reporting system** 1162 you how to get fast indexing.
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | TS.pyx | 346 """Use ARKIMEX for solving a fast-slow system. 353 Set to True for fast-slow partitioned systems.
|
| /petsc/doc/ |
| H A D | petsc.bib | 1563 title = {Numerical and analytical study of fast precessional switching}, 1584 title = {Analysis of fast precessional switching in magnetic thin films}, 6677 title = {{PetFMM} -- A dynamically load-balancing parallel fast multipole library}, 7070 title = {Object-oriented programming for fast-and-easy development of parallel 7204 title = {A fast, higher-order solver for scattering by penetrable bodies in three 7773 title = {A fast apparent horizon algorithm}, 8132 for fast ice dynamics, earth deformation, and verification have are included.}, 11958 @Article{ cohen-fast, 11965 title = {A fast double precision CFD code using CUDA} 13628 title = {Bi-{CGSTAB}: A fast and smoothly converging variant of {Bi-CG} for the solution [all …]
|