Home
last modified time | relevance | path

Searched +full:coverage +full:- +full:generate (Results 1 – 5 of 5) sorted by relevance

/petsc/
H A D.gitlab-ci.yml2 # stage-1 take only a few minutes; they do not run the full test suite or external packages.
4 # stage-2 runs on MCS systems and may take 10 to 15 minutes. They run the full test suite but with …
6 # stage-3 runs on MCS systems and may take an hour or more. They run the full test suite and heavil…
8 # The stage-(n) tests are only started if all of the stage-(n-1) tests run without error
13 - stage-1
14 - stage-2
15 - stage-3
16 - stage-4
19 GIT_CLEAN_FLAGS: -ffdxq
21 BASE_EXTRA_OPTIONS: -nox -nox_warning -malloc_dump
[all …]
/petsc/lib/petsc/bin/maint/
H A Dgcov.py3 # Created: Wed Oct 5 18:31:45 2022 (-0400)
20 # see https://gcovr.com/en/stable/output/json.html#json-output
130 raw_output = subprocess_check_output(['gcovr', '--version'])
144 'gcovr', '-j', '4', '--root', self.petsc_dir, '--exclude-throw-branches',
145 '--exclude-unreachable-branches'
148 base_args.append('--verbose')
152 if version < (5,) and '--html-self-contained' in args:
153 # --html-self-contained since gcovr 5.0
154 args.remove('--html-self-contained')
155 if version < (5,1) and '--decisions' in args:
[all …]
/petsc/src/snes/interface/
H A Dsnesj2.c18 SNESComputeJacobianDefaultColor - Computes the Jacobian using
24 + snes - nonlinear solver object
25 . x1 - location at which to evaluate Jacobian
26 - ctx - `MatFDColoring` context or `NULL`
29 + J - Jacobian matrix (not altered in this routine)
30 - B - newly computed Jacobian matrix to use with preconditioner (generally the same as `J`)
33 + -snes_fd_color_use_mat - use a matrix coloring from the explicit matrix nonzero pattern ins…
34 . -snes_fd_color - Activates `SNESComputeJacobianDefaultColor()` in `SNESSetFromOptio…
35 . -mat_fd_coloring_err <err> - Sets <err> (square root of relative error in the function)
36 . -mat_fd_coloring_umin <umin> - Sets umin, the minimum allowable u-value magnitude
[all …]
/petsc/src/ksp/ksp/tutorials/
H A Dex56.c1 static char help[] = "3D, tri-linear quadrilateral (Q1), displacement finite element formulation\n\
5 -ne <size> : number of (square) quadrilateral elements in each dimension\n\
6 -alpha <v> : scaling of material coefficient in embedded circle\n\n";
28 PetscReal x, y, z, h, *coords, soft_alpha = 1.e-3; in main()
48 PetscCall(PetscOptionsInt("-ne", nestring, "", ne, &ne, NULL)); in main()
49 …PetscCall(PetscOptionsBool("-log_stages", "Log stages of solve separately", "", log_stages, &log_s… in main()
50 …PetscCall(PetscOptionsReal("-alpha", "material coefficient inside circle", "", soft_alpha, &soft_a… in main()
51 …PetscCall(PetscOptionsBool("-two_solves", "solve additional variant of the problem", "", two_solve… in main()
52 …PetscCall(PetscOptionsBool("-test_nonzero_cols", "nonzero test", "", test_nonzero_cols, &test_nonz… in main()
53 …PetscCall(PetscOptionsBool("-use_mat_nearnullspace", "MatNearNullSpace API test", "", use_nearnull… in main()
[all …]
/petsc/config/BuildSystem/config/
H A Dpackage.py13 s -> (s0,s1,...s[n-1]), (s1,s2,...,sn), ...
42 …= None # path of the package installation point; for example /usr/local or /home/bsmith/mpich-2.0.1
44 … = '' # the version of the package that PETSc will build with the --download-package option
60 … # cannot tell the difference between user requiring it with --with-PACKAGE=1 and
66 …self.gitcommitmain = None # Git commit to use for petsc/main or similar non-release branc…
67 …ile = None # File within the git clone - that has the gitcommit for the current build…
78 … # optional functions we wish to check for in the libraries that should generate a PETSC_HAVE_ def…
79 … = 0 # 1 means the symbols in self.functions are Fortran symbols, so name-mangling is done
80 …, ''] # 1 means the symbols in self.functions symbol are C++ symbol, so name-mangling with prototy…
89 self.downloadonWindows = 0 # 1 means the --download-package works on Microsoft Windows
[all …]