Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 58) sorted by relevance

123

/petsc/lib/petsc/bin/maint/abi-compliance-checker/modules/Internals/Styles/
H A DCmpSystems.css17 table.summary, table.legend {
21 table-layout:fixed;
23 table.summary tr, table.summary td, table.summary th, table.legend td
32 table.summary th {
36 table.summary td {
41 table.summary td.object {
47 table.summary td.ver, table.summary th.ver {
H A DReport.css110 table.ptable {
118 table.ptable td {
127 table.ptable th.pn {
130 table.ptable th.chg {
133 table.vtable {
139 table.vtable td {
147 table.ptable th, table.vtable th {
159 table.summary {
163 table.summary th {
172 table.summary td {
/petsc/include/petsc/private/
H A Dhashmap.txt8 PetscHMap<T> - Hash table map with a key of <KeyType>
20 PetscHMap<T>Create - Create a hash table
27 . ht - The hash table
35 PetscHMap<T>CreateWithSize - Create a hash table with a given initial size
42 . n - The size of the hash table
45 . ht - The hash table
56 PetscHMap<T>Destroy - Destroy a hash table
63 . ht - The hash table
71 PetscHMap<T>Reset - Reset a hash table
78 . ht - The hash table
[all …]
/petsc/src/sys/tests/
H A Dex42.c9 PetscHSetI table; in main() local
19 PetscCall(PetscHSetICreate(&table)); in main()
22 PetscCall(PetscHSetIResize(table, 0)); in main()
28 PetscCall(PetscHSetIQueryAdd(table, key, &flag)); in main()
33 PetscCall(PetscHSetIGetSize(table, &n)); in main()
39 PetscCall(PetscHSetIHas(table, key, &flag)); in main()
48 PetscCall(PetscHSetIQueryDel(table, key, &flag)); in main()
55 PetscCall(PetscHSetIDestroy(&table)); in main()
H A Dex43.c9 PetscHSetIJ table; in main() local
20 PetscCall(PetscHSetIJCreate(&table)); in main()
23 PetscCall(PetscHSetIJResize(table, 0)); in main()
30 PetscCall(PetscHSetIJQueryAdd(table, key, &flag)); in main()
35 PetscCall(PetscHSetIJGetSize(table, &n)); in main()
42 PetscCall(PetscHSetIJHas(table, key, &flag)); in main()
52 PetscCall(PetscHSetIJQueryDel(table, key, &flag)); in main()
59 PetscCall(PetscHSetIJDestroy(&table)); in main()
/petsc/src/snes/tutorials/
H A Dex31.c131 PetscScalar table[4][3] = { in ChebyshevEval() local
137 …for (int i = 0; i < 4; i++) f[i] = table[i][0] * Tf[0] + table[i][1] * Tf[1] + table[i][2] * Tf[2]… in ChebyshevEval()
139table[0][i % 3] = 2 * x * table[0][(i - 1) % 3] - table[0][(i - 2) % 3]; /* T_n(x) = 2xT_{n-1}(x) … in ChebyshevEval()
141 …for (int j = 1; j < 4; j++) table[j][i % 3] = i * (2 * table[j - 1][(i - 1) % 3] + table[j][(i - 2… in ChebyshevEval()
142 for (int j = 0; j < 4; j++) f[j] += table[j][i % 3] * Tf[i]; in ChebyshevEval()
/petsc/doc/overview/
H A Dnutshell.md54 - {ref}`Vector table <doc_vector>`
55 - {ref}`Matrix table <doc_matrix>`
56 - {ref}`Linear solvers table <doc_linsolve>`
57 - {ref}`Nonlinear solvers table <doc_nonlinsolve>`
58 - {ref}`ODE integrators table <integrator_table>`
59 - {ref}`Optimizers table <doc_taosolve>`
60 - {ref}`Model/discretization interfaces to solvers table <dm_table>`
H A Dtao_solve_table.md8 .. list-table::
76 .. list-table::
160 .. list-table::
212 .. list-table::
240 .. list-table::
268 .. list-table::
H A Ddiscrete_table.md6 .. list-table::
H A Dvector_table.md6 .. list-table::
H A Dnonlinear_solve_table.md9 .. list-table::
H A Dplex_transform_table.md6 .. list-table::
H A Dintegrator_table.md6 .. list-table:: Time integration schemes
H A Dlinear_solve_table.md8 .. list-table::
281 .. list-table::
458 .. list-table::
H A Dmatrix_table.md6 .. list-table::
/petsc/doc/
H A Dbuild_man_index.py158 table = []
159 for level in levels: table.append([])
164 table[levels.index(level.lower())].append(filename)
168 return table
246 table = createtable(dirname,levels,secname,edit_branch)
247 if not table: continue
249 printindex(outfilename,headfilename,levels,titles,table)
/petsc/src/mat/impls/sbaij/mpi/
H A Dsbaijov.c18 PetscBT table; in MatIncreaseOverlap_MPISBAIJ() local
38 PetscCall(PetscBTCreate(Mbs, &table)); /* for column search */ in MatIncreaseOverlap_MPISBAIJ()
90 PetscCall(PetscBTMemzero(Mbs, table)); in MatIncreaseOverlap_MPISBAIJ()
95 PetscCall(PetscBTSet(table, idx[l])); in MatIncreaseOverlap_MPISBAIJ()
104 if (!PetscBTLookupSet(table, brow)) nidx[isz++] = brow; in MatIncreaseOverlap_MPISBAIJ()
118 PetscCall(PetscBTDestroy(&table)); in MatIncreaseOverlap_MPISBAIJ()
173 PetscBT *table; /* mark indices of this processor's is[] */ in MatIncreaseOverlap_MPISBAIJ_Once() local
193 PetscCall(PetscMalloc2(len, &table, (Mbs / PETSC_BITS_PER_BYTE + 1) * len, &t_p)); in MatIncreaseOverlap_MPISBAIJ_Once()
194 for (i = 0; i < len; i++) table[i] = t_p + (Mbs / PETSC_BITS_PER_BYTE + 1) * i; in MatIncreaseOverlap_MPISBAIJ_Once()
238 table_i = table[i]; in MatIncreaseOverlap_MPISBAIJ_Once()
[all …]
/petsc/src/vec/is/is/utils/
H A Disblock.c35 PetscBT table; in ISCompressIndicesGeneral() local
44 PetscCall(PetscBTCreate(Nbs, &table)); in ISCompressIndicesGeneral()
64 PetscCall(PetscBTMemzero(Nbs, table)); in ISCompressIndicesGeneral()
77 if (!PetscBTLookupSet(table, ival)) nidx[isz++] = ival; in ISCompressIndicesGeneral()
103 PetscCall(PetscBTDestroy(&table)); in ISCompressIndicesGeneral()
/petsc/src/mat/graphops/color/utils/
H A Dvalid.c106 PetscBT table; in MatISColoringTest() local
119 PetscCall(PetscBTCreate(M, &table)); in MatISColoringTest()
124 PetscCall(PetscBTMemzero(M, table)); in MatISColoringTest()
131 …PetscCheck(!PetscBTLookupSet(table, row), PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "color %" PetscInt… in MatISColoringTest()
136 PetscCall(PetscBTDestroy(&table)); in MatISColoringTest()
/petsc/src/ksp/ksp/tests/
H A Dex6.c34 PetscBool table = PETSC_FALSE, flg, test_residual = PETSC_FALSE, b_in_f = PETSC_TRUE; in main() local
39 PetscCall(PetscOptionsGetBool(NULL, NULL, "-table", &table, NULL)); in main()
112 if (table) { in main()
H A Dex30.c32 …PetscBool table = PETSC_FALSE, flg, flgB = PETSC_FALSE, trans = PETSC_FALSE, partition = PETSC_F… in main() local
44 PetscCall(PetscOptionsGetBool(NULL, NULL, "-table", &table, NULL)); in main()
311 if (table && ckrnorm) { in main()
/petsc/src/sys/tests/output/
H A Dex43_1.out1 N = 32 - table size: 528, add: 0.0, has: 0.0, del: 0.0
H A Dex42_1.out1 N = 32 - table size: 1024, add: 0.0, has: 0.0, del: 0.0
/petsc/doc/developers/
H A Dmrmanagement.md11 .. list-table:: MR Shepherd Checks
30 .. list-table:: MR Inactivity Thresholds
/petsc/src/ksp/ksp/tutorials/
H A Dex72.c41 PetscBool table = PETSC_FALSE, flg, trans = PETSC_FALSE, initialguess = PETSC_FALSE; in main() local
53 PetscCall(PetscOptionsGetBool(NULL, NULL, "-table", &table, NULL)); in main()
380 if (table) { in main()

123