Home
last modified time | relevance | path

Searched refs:same (Results 1 – 25 of 262) sorted by relevance

1234567891011

/petsc/src/ts/tutorials/output/
H A Dex20opt_ic_4.out1 MATSHELL and matrix-free multiple appear to produce the same results
2 MATSHELL transpose and matrix-free multiple appear to produce the same results
3 MATSHELL and matrix-free multiple appear to produce the same results
4 MATSHELL transpose and matrix-free multiple appear to produce the same results
5 MATSHELL and matrix-free multiple appear to produce the same results
6 MATSHELL transpose and matrix-free multiple appear to produce the same results
7 MATSHELL and matrix-free multiple appear to produce the same results
8 MATSHELL transpose and matrix-free multiple appear to produce the same results
13 MATSHELL and matrix-free multiple appear to produce the same results
14 MATSHELL transpose and matrix-free multiple appear to produce the same results
[all …]
/petsc/src/dm/dt/dualspace/impls/lagrange/tests/output/
H A Dex1_3_simplex_discontinuous_full.out9 Interior data is the same as all data
18 Interior data is the same as all data
25 Interior data is the same as all data
34 Interior data is the same as all data
43 Interior data is the same as all data
50 Interior data is the same as all data
68 Interior data is the same as all data
86 Interior data is the same as all data
96 Interior data is the same as all data
114 Interior data is the same as all data
[all …]
H A Dex1_3_wedge_discontinuous_full.out9 Interior data is the same as all data
18 Interior data is the same as all data
25 Interior data is the same as all data
34 Interior data is the same as all data
43 Interior data is the same as all data
50 Interior data is the same as all data
74 Interior data is the same as all data
98 Interior data is the same as all data
110 Interior data is the same as all data
134 Interior data is the same as all data
[all …]
H A Dex1_3_wedge_discontinuous_trimmed.out11 Interior data is the same as all data
26 Interior data is the same as all data
38 Interior data is the same as all data
53 Interior data is the same as all data
64 Interior data is the same as all data
71 Interior data is the same as all data
102 Interior data is the same as all data
144 Interior data is the same as all data
168 Interior data is the same as all data
210 Interior data is the same as all data
[all …]
H A Dex1_3_tensor_discontinuous_full.out9 Interior data is the same as all data
18 Interior data is the same as all data
25 Interior data is the same as all data
34 Interior data is the same as all data
43 Interior data is the same as all data
50 Interior data is the same as all data
80 Interior data is the same as all data
110 Interior data is the same as all data
124 Interior data is the same as all data
154 Interior data is the same as all data
[all …]
H A Dex1_3_simplex_discontinuous_trimmed.out10 Interior data is the same as all data
22 Interior data is the same as all data
32 Interior data is the same as all data
44 Interior data is the same as all data
54 Interior data is the same as all data
61 Interior data is the same as all data
82 Interior data is the same as all data
108 Interior data is the same as all data
124 Interior data is the same as all data
150 Interior data is the same as all data
[all …]
H A Dex1_3_tensor_discontinuous_trimmed.out12 Interior data is the same as all data
30 Interior data is the same as all data
44 Interior data is the same as all data
62 Interior data is the same as all data
74 Interior data is the same as all data
81 Interior data is the same as all data
123 Interior data is the same as all data
183 Interior data is the same as all data
216 Interior data is the same as all data
276 Interior data is the same as all data
[all …]
H A Dex1_1_discontinuous_full.out7 Interior data is the same as all data
22 Interior data is the same as all data
38 Interior data is the same as all data
56 Interior data is the same as all data
75 Interior data is the same as all data
96 Interior data is the same as all data
118 Interior data is the same as all data
142 Interior data is the same as all data
H A Dex1_1_discontinuous_trimmed.out8 Interior data is the same as all data
25 Interior data is the same as all data
42 Interior data is the same as all data
62 Interior data is the same as all data
82 Interior data is the same as all data
105 Interior data is the same as all data
H A Dex1_3_tensor_continuous_full.out9 Interior data is the same as all data
18 Interior data is the same as all data
25 Interior data is the same as all data
34 Interior data is the same as all data
43 Interior data is the same as all data
50 Interior data is the same as all data
193 Interior data is the same as all data
617 Interior data is the same as all data
1559 Interior data is the same as all data
H A Dex1_3_wedge_continuous_full.out9 Interior data is the same as all data
18 Interior data is the same as all data
25 Interior data is the same as all data
34 Interior data is the same as all data
43 Interior data is the same as all data
50 Interior data is the same as all data
165 Interior data is the same as all data
460 Interior data is the same as all data
1066 Interior data is the same as all data
2162 Interior data is the same as all data
H A Dex1_3_simplex_continuous_full.out9 Interior data is the same as all data
18 Interior data is the same as all data
25 Interior data is the same as all data
34 Interior data is the same as all data
43 Interior data is the same as all data
50 Interior data is the same as all data
137 Interior data is the same as all data
314 Interior data is the same as all data
637 Interior data is the same as all data
1173 Interior data is the same as all data
[all …]
H A Dex1_1_continuous_full.out7 Interior data is the same as all data
22 Interior data is the same as all data
45 Interior data is the same as all data
83 Interior data is the same as all data
127 Interior data is the same as all data
/petsc/src/ksp/pc/impls/lmvm/
H A Dlmvmpc.c37 PetscBool same; in PCLMVMSetUpdateVec() local
42 PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCLMVM, &same)); in PCLMVMSetUpdateVec()
43 if (!same) PetscFunctionReturn(PETSC_SUCCESS); in PCLMVMSetUpdateVec()
66 PetscBool same; in PCLMVMSetMatLMVM() local
71 PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCLMVM, &same)); in PCLMVMSetMatLMVM()
72 if (!same) PetscFunctionReturn(PETSC_SUCCESS); in PCLMVMSetMatLMVM()
73 PetscCall(PetscObjectBaseTypeCompare((PetscObject)B, MATLMVM, &same)); in PCLMVMSetMatLMVM()
74 …PetscCheck(same, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONG, "Matrix must be an MATLMVM… in PCLMVMSetMatLMVM()
98 PetscBool same; in PCLMVMGetMatLMVM() local
102 PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCLMVM, &same)); in PCLMVMGetMatLMVM()
[all …]
/petsc/src/vec/is/sf/interface/
H A Dsftype.c136 PetscBool same; in MPIPetsc_Type_compare() local
142 PetscCall(PetscArraycmp(aints, bints, aintcount, &same)); in MPIPetsc_Type_compare()
143 if (same) { in MPIPetsc_Type_compare()
144 PetscCall(PetscArraycmp(aaddrs, baddrs, aaddrcount, &same)); in MPIPetsc_Type_compare()
145 if (same) { in MPIPetsc_Type_compare()
146 PetscCall(PetscArraycmp(acounts, bcounts, acountcount, &same)); in MPIPetsc_Type_compare()
147 if (same) { in MPIPetsc_Type_compare()
149 PetscCall(PetscArraycmp(atypes, btypes, atypecount, &same)); in MPIPetsc_Type_compare()
150 if (!same) { in MPIPetsc_Type_compare()
154 PetscCall(MPIPetsc_Type_compare(atypes[i], btypes[i], &same)); in MPIPetsc_Type_compare()
[all …]
/petsc/src/ksp/pc/tests/output/
H A Dex6_1.out1 flg == 1 => both index sets are same
18 flg == 1 => both index sets are same
35 flg == 1 => both index sets are same
52 flg == 1 => both index sets are same
69 flg == 1 => both index sets are same
86 flg == 1 => both index sets are same
103 flg == 1 => both index sets are same
120 flg == 1 => both index sets are same
137 flg == 1 => both index sets are same
/petsc/src/dm/label/tutorials/
H A Dex1.c52 PetscBool same; in CheckLabelsSame() local
58 PetscCall(DMLabelCompare(PETSC_COMM_WORLD, label0, label1, &same, &msg)); in CheckLabelsSame()
59 …PetscCheck(same == (PetscBool)!msg, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "DMLabelCompare returns inco… in CheckLabelsSame()
60 …PetscCheck(same, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "Labels \"%s\" and \"%s\" should not differ! Me… in CheckLabelsSame()
70 PetscBool same; in CheckLabelsNotSame() local
76 PetscCall(DMLabelCompare(PETSC_COMM_WORLD, label0, label1, &same, &msg)); in CheckLabelsNotSame()
77 …PetscCheck(same == (PetscBool)!msg, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "DMLabelCompare returns inco… in CheckLabelsNotSame()
78 …PetscCheck(!same, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "Labels \"%s\" and \"%s\" should differ!", nam… in CheckLabelsNotSame()
87 PetscBool same; in CheckDMLabelsSame() local
93 PetscCall(DMCompareLabels(dm0, dm1, &same, &msg)); in CheckDMLabelsSame()
[all …]
/petsc/src/ksp/ksp/utils/lmvm/
H A Dlmvmutils.c33 PetscBool same; in MatLMVMUpdate() local
39 PetscCall(PetscObjectBaseTypeCompare((PetscObject)B, MATLMVM, &same)); in MatLMVMUpdate()
40 if (!same) PetscFunctionReturn(PETSC_SUCCESS); in MatLMVMUpdate()
121 PetscBool same; in MatLMVMClearJ0() local
125 PetscCall(PetscObjectBaseTypeCompare((PetscObject)B, MATLMVM, &same)); in MatLMVMClearJ0()
126 if (!same) PetscFunctionReturn(PETSC_SUCCESS); in MatLMVMClearJ0()
155 PetscBool same; in MatLMVMSetJ0Scale() local
160 PetscCall(PetscObjectBaseTypeCompare((PetscObject)B, MATLMVM, &same)); in MatLMVMSetJ0Scale()
161 if (!same) PetscFunctionReturn(PETSC_SUCCESS); in MatLMVMSetJ0Scale()
284 PetscBool same; in MatLMVMSetJ0Diag() local
[all …]
/petsc/src/sys/objects/
H A Ddestroy.c163 PetscErrorCode PetscObjectTypeCompare(PetscObject obj, const char type_name[], PetscBool *same) in PetscObjectTypeCompare() argument
166 PetscAssertPointer(same, 3); in PetscObjectTypeCompare()
167 if (!obj) *same = (PetscBool)!type_name; in PetscObjectTypeCompare()
170 if (!type_name || !obj->type_name) *same = (PetscBool)(!obj->type_name == !type_name); in PetscObjectTypeCompare()
173 PetscCall(PetscStrcmp(obj->type_name, type_name, same)); in PetscObjectTypeCompare()
196 PetscErrorCode PetscObjectObjectTypeCompare(PetscObject obj1, PetscObject obj2, PetscBool *same) in PetscObjectObjectTypeCompare() argument
201 PetscAssertPointer(same, 3); in PetscObjectObjectTypeCompare()
202 PetscCall(PetscStrcmp(obj1->type_name, obj2->type_name, same)); in PetscObjectObjectTypeCompare()
222 PetscErrorCode PetscObjectBaseTypeCompare(PetscObject obj, const char type_name[], PetscBool *same) in PetscObjectBaseTypeCompare() argument
225 PetscAssertPointer(same, 3); in PetscObjectBaseTypeCompare()
[all …]
/petsc/src/sys/tests/
H A Dex77.c7 PetscBool same = PETSC_FALSE; in main() local
12 …if (!rank) PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &same, 1, MPI_C_BOOL, MPI_LAND, PETSC_COMM_WO… in main()
13 else PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &same, 1, MPI_C_BOOL, MPI_LAND, PETSC_COMM_WORLD)); in main()
H A Dex78.c6 PetscInt same = PETSC_INT_MAX; in main() local
10 PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &same, 1, MPIU_INT, MPI_SUM, PETSC_COMM_WORLD)); in main()
H A Dex76.c6 PetscBool same = PETSC_FALSE; in main() local
10 …PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &same, PETSC_INT_MAX - 100, MPI_C_BOOL, MPI_LAND, PETSC_… in main()
/petsc/src/mat/tests/output/
H A Dex218_1.out1 MATSHELL and matrix-free multiple appear to produce the same results
2 MATSHELL transpose and matrix-free multiple appear to produce the same results
/petsc/src/mat/tests/
H A Dex249.c13 PetscBool same; in main() local
64 PetscCall(MatEqual(submats[i], submats2[i], &same)); in main()
65 PetscCheck(same, PETSC_COMM_SELF, PETSC_ERR_PLIB, "submatrix %" PetscInt_FMT " is not same", i); in main()
/petsc/src/ksp/ksp/tutorials/
H A Dex10.c52 PetscBool same; in CreateSystem() local
96 same = (n1 == n2) ? PETSC_TRUE : PETSC_FALSE; in CreateSystem()
97 PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &same, 1, MPI_C_BOOL, MPI_LAND, PETSC_COMM_WORLD)); in CreateSystem()
99 if (!same) { /* create a new vector b by padding the old one */ in CreateSystem()

1234567891011