Home
last modified time | relevance | path

Searched refs:weights (Results 1 – 25 of 146) sorted by relevance

123456

/petsc/src/dm/impls/plex/tests/output/
H A Dex24_3.out5 use vertex weights: 1
6 use edge weights: 0
13 use vertex weights: 1
14 use edge weights: 0
18 Using vertex weights
25 use vertex weights: 1
26 use edge weights: 0
33 use vertex weights: 1
34 use edge weights: 0
38 Using vertex weights
[all …]
H A Dex12_lb_0_ms.out9 use vertex weights: 1
10 use edge weights: 0
18 use vertex weights: 1
19 use edge weights: 0
29 use vertex weights: 1
30 use edge weights: 0
40 use vertex weights: 1
41 use edge weights: 0
H A Dex12_2_ms_petscpartitioner_multistage_node_size-2_petscpartitioner_multistage_node_interleaved-0.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
[all …]
H A Dex12_5_ms_petscpartitioner_multistage_msection-2.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
36 use vertex weights: 1
37 use edge weights: 0
[all …]
H A Dex12_2_ms_petscpartitioner_multistage_node_size-2_petscpartitioner_multistage_node_interleaved-1.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
[all …]
H A Dex12_11_ms_petscpartitioner_multistage_node_size-2_petscpartitioner_multistage_node_interleaved-0.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
[all …]
H A Dex12_11_ms_petscpartitioner_multistage_node_size-2_petscpartitioner_multistage_node_interleaved-1.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
[all …]
H A Dex12_1_ms_cellsection.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
H A Dex18_7_hdf5_hierarch_nsize-4.out7 use vertex weights: 1
8 use edge weights: 0
12 Using vertex weights
17 Using vertex weights
24 Using vertex weights
H A Dex18_7_hdf5_hierarch_nsize-2.out7 use vertex weights: 1
8 use edge weights: 0
12 Using vertex weights
17 Using vertex weights
24 Using vertex weights
H A Dex18_7_hdf5_hierarch_nsize-3.out7 use vertex weights: 1
8 use edge weights: 0
12 Using vertex weights
17 Using vertex weights
24 Using vertex weights
H A Dex12_2_ms_petscpartitioner_multistage_node_size-3_petscpartitioner_multistage_node_interleaved-0.out5 use vertex weights: 1
6 use edge weights: 0
14 use vertex weights: 1
15 use edge weights: 0
21 use vertex weights: 1
22 use edge weights: 0
28 use vertex weights: 1
29 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
/petsc/src/sys/classes/draw/utils/
H A Dhists.c24 PetscReal *weights; member
84 PetscCall(PetscMalloc2(h->maxValues, &h->values, h->maxValues, &h->weights)); in PetscDrawHGCreate()
166 PetscCall(PetscFree2((*hist)->values, (*hist)->weights)); in PetscDrawHGDestroy()
200 PetscCall(PetscArraycpy(tmpw, hist->weights, hist->maxValues)); in PetscDrawHGAddValue()
201 PetscCall(PetscFree2(hist->values, hist->weights)); in PetscDrawHGAddValue()
204 hist->weights = tmpw; in PetscDrawHGAddValue()
233 hist->weights[hist->numValues] = 1.; in PetscDrawHGAddValue()
268 PetscCall(PetscArraycpy(tmpw, hist->weights, hist->maxValues)); in PetscDrawHGAddWeightedValue()
269 PetscCall(PetscFree2(hist->values, hist->weights)); in PetscDrawHGAddWeightedValue()
272 hist->weights = tmpw; in PetscDrawHGAddWeightedValue()
[all …]
/petsc/src/ksp/ksp/tutorials/
H A Dex68.c12 PetscErrorCode ComputeSolution(PetscInt n, PetscReal *nodes, PetscReal *weights, Vec x) in ComputeSolution() argument
33 PetscErrorCode ComputeRhs(PetscInt n, PetscReal *nodes, PetscReal *weights, Vec b) in ComputeRhs() argument
44 …bb[i] = -weights[i] * (-20. * PETSC_PI * xd * PetscSinReal(5. * PETSC_PI * xd) + (2. - (5. * PETSC… in ComputeRhs()
53 PetscReal *weights; in main() local
82 PetscCall(PetscMalloc2(n, &nodes, n, &weights)); in main()
83 …DTGaussLobattoLegendreQuadrature(n, PETSCGAUSSLOBATTOLEGENDRE_VIA_LINEAR_ALGEBRA, nodes, weights)); in main()
87 PetscCall(PetscGaussLobattoLegendreElementLaplacianCreate(n, nodes, weights, &A)); in main()
93 PetscCall(ComputeRhs(n, nodes, weights, b)); in main()
105 PetscCall(ComputeSolution(n, nodes, weights, b)); in main()
110 PetscCall(PetscGaussLobattoLegendreIntegrate(n, nodes, weights, f, &norm)); in main()
[all …]
/petsc/src/dm/partitioner/tests/output/
H A Dex33_simple_nsize-1_nparts-1_pwgts-true.out5 use vertex weights: 1
6 use edge weights: 0
18 use vertex weights: 1
19 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
H A Dex33_simple_nsize-1_nparts-1_pwgts-false.out5 use vertex weights: 1
6 use edge weights: 0
18 use vertex weights: 1
19 use edge weights: 0
35 use vertex weights: 1
36 use edge weights: 0
H A Dex33_gather_nsize-1_nparts-1.out6 use vertex weights: 1
7 use edge weights: 0
24 use vertex weights: 1
25 use edge weights: 0
46 use vertex weights: 1
47 use edge weights: 0
H A Dex33_gather_nsize-1_nparts-2.out6 use vertex weights: 1
7 use edge weights: 0
25 use vertex weights: 1
26 use edge weights: 0
48 use vertex weights: 1
49 use edge weights: 0
H A Dex33_shell_nsize-1_nparts-1.out5 use vertex weights: 1
6 use edge weights: 0
19 use vertex weights: 1
20 use edge weights: 0
37 use vertex weights: 1
38 use edge weights: 0
H A Dex33_simple_nsize-1_nparts-2_pwgts-true.out5 use vertex weights: 1
6 use edge weights: 0
19 use vertex weights: 1
20 use edge weights: 0
37 use vertex weights: 1
38 use edge weights: 0
H A Dex33_simple_nsize-1_nparts-2_pwgts-false.out5 use vertex weights: 1
6 use edge weights: 0
19 use vertex weights: 1
20 use edge weights: 0
37 use vertex weights: 1
38 use edge weights: 0
H A Dex33_gather_nsize-1_nparts-3.out6 use vertex weights: 1
7 use edge weights: 0
26 use vertex weights: 1
27 use edge weights: 0
50 use vertex weights: 1
51 use edge weights: 0
H A Dex33_shell_nsize-1_nparts-2.out5 use vertex weights: 1
6 use edge weights: 0
20 use vertex weights: 1
21 use edge weights: 0
39 use vertex weights: 1
40 use edge weights: 0
H A Dex33_simple_nsize-1_nparts-3_pwgts-false.out5 use vertex weights: 1
6 use edge weights: 0
20 use vertex weights: 1
21 use edge weights: 0
39 use vertex weights: 1
40 use edge weights: 0
H A Dex33_simple_nsize-1_nparts-3_pwgts-true.out5 use vertex weights: 1
6 use edge weights: 0
20 use vertex weights: 1
21 use edge weights: 0
39 use vertex weights: 1
40 use edge weights: 0

123456