Home
last modified time | relevance | path

Searched full:force (Results 1 – 25 of 141) sorted by relevance

123456

/petsc/src/sys/tests/
H A Dpetsc.yml8 force: 0.
10 force: 0.
13 force: 0.
/petsc/lib/petsc/bin/maint/
H A Drunjobs.py11 # for the specified "jobs list". Use '-f' to force the creation of this commit [and then use '…
26 force = False variable
28 force = True variable
38 if not force:
H A Dcheck-fortran-coverage.sh25 git worktree remove --force "$TMPDIR/wt_$rev"
/petsc/config/PETSc/options/
H A Darch.py21 …help.addArgument('PETSc', '-force=<bool>', nargs.ArgBool(None, 0, 'Bypass configure has…
168 if self.argDB['force']:
172 …raise RuntimeError('You cannot use --force with --package-prefix-hash=directory; you need to delet…
186 if self.argDB['force']:
209 …t changed; no need to run configure\nHowever you can force a configure run using the option: --for…
/petsc/share/petsc/
H A Dchkerrconvert.py219 def get_paths_list(start_path,search_tool,force): argument
226 if force:
250 def main(search_tool,start_path,dry_run,verbose,force,del_empty_last_line): argument
261 found_list = get_paths_list(start_path,search_tool,force)
305 …parser.add_argument('-f','--force',action='store_true',help='don\'t narrow search using SEARCH TOO…
312 … main(args.search_tool,args.path,args.dry_run,args.verbose,args.force,args.delete_empty_last_line)
/petsc/src/binding/petsc4py/conf/
H A Dconfpetsc.py135 force=False, argument
147 if not (force or modified.newer_group(alldeps, target)):
581 ('force', 'f', 'forcibly build everything (ignore file timestamps)'),
584 boolean_options = ['force']
587 self.force = False
592 ('force', 'force'),
598 cython_run(force=self.force, VERSION=cython_req(), **source)
680 if not (self.force or modified.newer_group(alldeps, target)):
/petsc/src/ksp/ksp/impls/gmres/dgmres/
H A Ddgmresimpl.h18 PetscBool force; /* Force the use of the deflation at the restart */ \
/petsc/src/sys/classes/draw/utils/ftn-custom/
H A Dzzoomf.c10 typedef void (*FCN)(PetscDraw *, void *, PetscErrorCode *); /* force argument to next function to n…
/petsc/doc/install/
H A Dmultibuild.md78 use the `--force` option when configuring your PETSc installation:
81 $ ./configure --some-args --force
/petsc/config/
H A Dpetsc_harness.sh47 -f ................ force attempt to run test that would otherwise be skipped
75 force=false
86 f ) force=true ;;
/petsc/doc/ext/
H A Dhtml5_petsc.py149 highlight_args['force'] = node.get('force', False)
/petsc/src/dm/dt/tests/
H A Dex10.c160 PetscBool force; in SetupDiscretization() local
163 PetscCall(PetscDSGetForceQuad(ds, &force)); in SetupDiscretization()
164 if (force) PetscCall(PetscDSSetForceQuad(ds, PETSC_FALSE)); in SetupDiscretization()
/petsc/config/examples/
H A Darch-nersc-perlmutter-opt.py17 # different programming environment (which will generally force a reload of certain related modules,
/petsc/src/sys/classes/random/tutorials/
H A Dex1.c27 …/* force imaginary part of random number to always be zero; thus obtain reproducible results with … in main()
/petsc/src/dm/impls/composite/
H A Dpackm.c93 /* force AIJ matrix to allow queries for preallocation */ in DMCreateMatrix_Composite_AIJ()
141 /* force AIJ matrix to allow queries for zeroing initial matrix */ in DMCreateMatrix_Composite_AIJ()
/petsc/config/BuildSystem/
H A DRDict.py636 def save(self, force = 1): argument
638 - Giving force = True will cause an immediate save'''
640 if force:
650 self.saveTimer = threading.Timer(5, self.save, [], {'force': 1})
659 self.save(force = 1)
/petsc/config/BuildSystem/config/packages/
H A DMETIS.py35 …# force metis/parmetis to use a portable random number generator that will produce the same partit…
H A Dalquimia.py14 …ke on the alquimia directory tries to build executables that will fail so force only building the …
/petsc/src/tao/linesearch/impls/armijo/
H A Darmijo.h28 that we always force decrease from the initial point.
/petsc/src/mat/tests/
H A Dex81.c56 /* Force allocate missing diagonal entries of B */ in main()
/petsc/src/tao/linesearch/impls/owarmijo/
H A Dowarmijo.h28 that we always force decrease from the initial point.
/petsc/src/vec/pf/impls/constant/
H A Dconst.c70 /*typedef PetscErrorCode (*FCN)(void*,PetscInt,const PetscScalar*,PetscScalar*); force argument to…
/petsc/doc/community/meetings/2023/
H A Dindex.md80 | 2:00 pm | MultiFlow: A coupled balanced-force framework to solve multiphase flows in arbitrary d…
109 | 3:45 pm | A mimetic finite difference based quasi-static magnetohydrodynamic solver for force-fr…
383 :::{topic} **A mimetic finite difference based quasi-static magnetohydrodynamic solver for force-fr…
390 Force-free plasmas are a good approximation in the low-beta case, where the
393 a force-free plasma is most efficiently described by a quasi-static
395 work, we consider a regularized quasi-static MHD model for force-free
685 :::{topic} **MultiFlow: A coupled balanced-force framework to solve multiphase flows in arbitrary d…
/petsc/src/ksp/ksp/impls/gmres/agmres/
H A Dagmres.c476 if ((test > agmres->smv * (ksp->max_it - ksp->its)) || agmres->force) { in KSPSolve_AGMRES()
478 …if (!agmres->force && ((test > agmres->bgv * (ksp->max_it - ksp->its)) && ((agmres->r + 1) < agmre… in KSPSolve_AGMRES()
535 …all(PetscViewerASCIIPrintf(viewer, " Adaptive strategy is used: %s\n", PetscBools[agmres->force])); in KSPView_AGMRES()
589 - -ksp_dgmres_force <0, 1> - Force the deflation at each restart.
670 agmres->force = PETSC_FALSE; in KSPCreate_AGMRES()
/petsc/src/ksp/ksp/impls/gmres/
H A Dgmresimpl.h65 typedef PetscErrorCode (*FCN)(KSP, PetscInt); /* force argument to next function to not be extern C…

123456