| /petsc/src/ksp/ksp/tutorials/output/ |
| H A D | ex21_1.out | 3 0: ||M*A - I|| NORM2 abs 0.999692 rel 1. 4 1: ||M*A - I|| NORM2 abs 0.999647 rel 0.999956 5 2: ||M*A - I|| NORM2 abs 0.999715 rel 1.00002 6 3: ||M*A - I|| NORM2 abs 0.999848 rel 1.00016 7 4: ||M*A - I|| NORM2 abs 0.999899 rel 1.00021 8 5: ||M*A - I|| NORM2 abs 0.999856 rel 1.00016 9 6: ||M*A - I|| NORM2 abs 0.999789 rel 1.0001 10 7: ||M*A - I|| NORM2 abs 0.999662 rel 0.99997 11 8: ||M*A - I|| NORM2 abs 0.999398 rel 0.999706 12 9: ||M*A - I|| NORM2 abs 0.99895 rel 0.999259 [all …]
|
| H A D | ex21_2.out | 3 0: ||M*A - I|| NORM2 abs 0.999692 rel 1. 4 1: ||M*A - I|| NORM2 abs 0.999715 rel 1.00002 5 2: ||M*A - I|| NORM2 abs 0.999899 rel 1.00021 6 3: ||M*A - I|| NORM2 abs 0.999789 rel 1.0001 7 4: ||M*A - I|| NORM2 abs 0.999398 rel 0.999706 8 5: ||M*A - I|| NORM2 abs 0.998234 rel 0.998542 9 6: ||M*A - I|| NORM2 abs 0.994504 rel 0.994811 10 7: ||M*A - I|| NORM2 abs 0.9799 rel 0.980202 11 8: ||M*A - I|| NORM2 abs 0.92246 rel 0.922744 12 9: ||M*A - I|| NORM2 abs 0.724701 rel 0.724924 [all …]
|
| /petsc/src/mat/utils/ |
| H A D | convert.c | 9 Mat M; in MatConvert_Basic() local 25 M = *newmat; in MatConvert_Basic() 30 PetscCall(MatCreate(PetscObjectComm((PetscObject)mat), &M)); in MatConvert_Basic() 31 PetscCall(MatSetSizes(M, lm, ln, m, n)); in MatConvert_Basic() 32 PetscCall(MatSetBlockSizesFromMats(M, mat, mat)); in MatConvert_Basic() 33 PetscCall(MatSetType(M, newtype)); in MatConvert_Basic() 34 PetscCall(MatSetUp(M)); in MatConvert_Basic() 36 PetscCall(MatSetOption(M, MAT_NEW_NONZERO_LOCATION_ERR, PETSC_FALSE)); in MatConvert_Basic() 37 PetscCall(MatSetOption(M, MAT_NEW_NONZERO_ALLOCATION_ERR, PETSC_FALSE)); in MatConvert_Basic() 38 PetscCall(MatSetOption(M, MAT_NO_OFF_PROC_ENTRIES, PETSC_TRUE)); in MatConvert_Basic() [all …]
|
| /petsc/src/mat/impls/sbaij/mpi/ |
| H A D | mpiaijsbaij.c | 12 Mat M; in MatConvert_MPIAIJ_MPISBAIJ() local 26 PetscCall(MatCreate(PetscObjectComm((PetscObject)A), &M)); in MatConvert_MPIAIJ_MPISBAIJ() 27 PetscCall(MatSetSizes(M, lm, ln, m, n)); in MatConvert_MPIAIJ_MPISBAIJ() 28 PetscCall(MatSetType(M, MATMPISBAIJ)); in MatConvert_MPIAIJ_MPISBAIJ() 29 PetscCall(MatSeqSBAIJSetPreallocation(M, bs, 0, d_nnz)); in MatConvert_MPIAIJ_MPISBAIJ() 30 PetscCall(MatMPISBAIJSetPreallocation(M, bs, 0, d_nnz, 0, o_nnz)); in MatConvert_MPIAIJ_MPISBAIJ() 38 } else M = *newmat; in MatConvert_MPIAIJ_MPISBAIJ() 43 PetscCall(MatConvert_Basic(A, newtype, MAT_REUSE_MATRIX, &M)); in MatConvert_MPIAIJ_MPISBAIJ() 45 if (reuse == MAT_INPLACE_MATRIX) PetscCall(MatHeaderReplace(A, &M)); in MatConvert_MPIAIJ_MPISBAIJ() 46 else *newmat = M; in MatConvert_MPIAIJ_MPISBAIJ() [all …]
|
| /petsc/src/ksp/ksp/tutorials/ |
| H A D | ex77.c | 15 PetscInt m, M, N = 5, i; in main() local 48 PetscCall(MatGetSize(A, &M, NULL)); in main() 50 if (rank > 1) PetscCall(MatSetSizes(B, 0, 0, M, M)); in main() 51 else PetscCall(MatSetSizes(B, rank ? M - M / 2 : M / 2, rank ? M - M / 2 : M / 2, M, M)); in main() 68 PetscCall(MatGetSize(A, &M, NULL)); in main() 70 if (rank > 3) PetscCall(MatSetSizes(B, 0, 0, M, M)); in main() 71 …else PetscCall(MatSetSizes(B, rank == 0 ? M - 3 * (M / 4) : M / 4, rank == 0 ? M - 3 * (M / 4) : M… in main() 86 PetscCall(KSPGetMatSolveBatchSize(ksp, &M)); in main() 87 if (M != PETSC_DECIDE) { in main() 115 PetscCall(MatGetSize(KA, &M, NULL)); in main() [all …]
|
| H A D | ex67.c | 45 PetscInt M = 10; in main() local 50 PetscCall(PetscOptionsGetInt(NULL, NULL, "-M", &M, NULL)); in main() 66 PetscCall(DMDACreate1d(PETSC_COMM_WORLD, DM_BOUNDARY_PERIODIC, M, 1, 2, NULL, &da)); in main() 140 PetscInt i, M, xs, xm; in FormRightHandSide() local 151 …PetscCall(DMDAGetInfo(da, NULL, &M, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NU… in FormRightHandSide() 157 h = 1.0 / M; in FormRightHandSide() 170 PetscInt i, M, xs, xm; in FormMatrix() local 181 …PetscCall(DMDAGetInfo(da, NULL, &M, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NU… in FormMatrix() 184 h = 1.0 / M; in FormMatrix() 203 PetscCall(PetscMalloc1(M, &acols)); in FormMatrix() [all …]
|
| /petsc/src/mat/impls/baij/mpi/ |
| H A D | mpiaijbaij.c | 10 Mat M; in MatConvert_MPIAIJ_MPIBAIJ() local 24 PetscCall(MatCreate(PetscObjectComm((PetscObject)A), &M)); in MatConvert_MPIAIJ_MPIBAIJ() 25 PetscCall(MatSetSizes(M, lm, ln, m, n)); in MatConvert_MPIAIJ_MPIBAIJ() 26 PetscCall(MatSetType(M, MATMPIBAIJ)); in MatConvert_MPIAIJ_MPIBAIJ() 27 PetscCall(MatSeqBAIJSetPreallocation(M, bs, 0, d_nnz)); in MatConvert_MPIAIJ_MPIBAIJ() 28 PetscCall(MatMPIBAIJSetPreallocation(M, bs, 0, d_nnz, 0, o_nnz)); in MatConvert_MPIAIJ_MPIBAIJ() 40 M = *newmat; in MatConvert_MPIAIJ_MPIBAIJ() 41 PetscCall(MatGetOption(M, MAT_NO_OFF_PROC_ENTRIES, &flg)); in MatConvert_MPIAIJ_MPIBAIJ() 47 PetscCall(MatSetOption(M, MAT_NO_OFF_PROC_ENTRIES, PETSC_TRUE)); in MatConvert_MPIAIJ_MPIBAIJ() 48 PetscCall(MatConvert_Basic(A, newtype, MAT_REUSE_MATRIX, &M)); in MatConvert_MPIAIJ_MPIBAIJ() [all …]
|
| /petsc/src/ksp/pc/impls/spai/ |
| H A D | ispai.c | 41 matrix *M; /* the approximate inverse in SPAI format */ member 90 …PetscCallExternal(bspai, ispai->B, &ispai->M, stdout, ispai->epsilon, ispai->nbsteps, ispai->max, … in PCSetUp_SPAI() 92 PetscCall(ConvertMatrixToMat(PetscObjectComm((PetscObject)pc), ispai->M, &ispai->PM)); in PCSetUp_SPAI() 96 sp_free_matrix(ispai->M); in PCSetUp_SPAI() 529 matrix *M; in ConvertMatToMatrix() local 551 M = new_matrix((SPAI_Comm)comm); in ConvertMatToMatrix() 553 M->n = n; in ConvertMatToMatrix() 554 M->bs = 1; in ConvertMatToMatrix() 555 M->max_block_size = 1; in ConvertMatToMatrix() 557 M->mnls = (int *)malloc(sizeof(int) * size); in ConvertMatToMatrix() [all …]
|
| /petsc/src/ts/tutorials/network/ |
| H A D | pipeInterface.c | 101 PetscInt M, rows[2], cols[2], *nz; in PipeCreateJacobian() local 119 PetscCall(MatGetSize(Jpipe[0], &M, NULL)); in PipeCreateJacobian() 120 PetscCall(PetscCalloc2(M, &nz, 4, &aa)); in PipeCreateJacobian() 123 PetscCall(MatSetSizes(Jpipe[1], PETSC_DECIDE, PETSC_DECIDE, M, 2)); in PipeCreateJacobian() 139 PetscCall(MatSetSizes(Jpipe[2], PETSC_DECIDE, PETSC_DECIDE, M, 2)); in PipeCreateJacobian() 144 nz[M - 2] = 2; in PipeCreateJacobian() 145 nz[M - 1] = 2; in PipeCreateJacobian() 146 rows[0] = M - 2; in PipeCreateJacobian() 147 rows[1] = M - 1; in PipeCreateJacobian() 191 PetscInt nedges, e, i, M, N, *rows, *cols; in JunctionCreateJacobian() local [all …]
|
| /petsc/src/ts/tutorials/ |
| H A D | chem_meth_ethanol.inp | 41 H2+M<=>H+H+M 4.577E+19 -1.40 1.044E+05 44 O2+M<=>O+O+M 4.420E+17 -0.63 1.189E+05 47 OH+M<=>O+H+M 9.780E+17 -0.74 1.021E+05 50 H2O+M<=>H+OH+M 1.907E+23 -1.83 1.185E+05 53 H+O2(+M)<=>HO2(+M) 1.475E+12 0.60 0.000E+00 72 H2O2(+M)<=>OH+OH(+M) 2.951E+14 0.00 4.843E+04 89 CO+O(+M)<=>CO2(+M) 1.800E+10 0.00 2.384E+03 99 HCO+M<=>H+CO+M 4.750E+11 0.66 1.487E+04 130 HCO+H(+M)<=>CH2O(+M) 1.090E+12 0.48 -2.600E+02 135 CO+H2(+M)<=>CH2O(+M) 4.300E+07 1.50 7.960E+04 [all …]
|
| /petsc/src/dm/impls/da/ |
| H A D | da1.c | 55 …" m %" PetscInt_FMT " w %" PetscInt_FMT " s %" PetscInt_FMT "\n", rank, dd->M, dd->m, dd->w, dd->s… in DMView_DA_1d() 62 double ymin = -1, ymax = 1, xmin = -1, xmax = dd->M, x; in DMView_DA_1d() 81 …for (xmin_tmp = 0; xmin_tmp < dd->M; xmin_tmp++) PetscCall(PetscDrawLine(draw, (double)xmin_tmp, y… in DMView_DA_1d() 83 xmax = dd->M - 1; in DMView_DA_1d() 126 const PetscInt M = dd->M; in DMSetUp_DA_1D() local 152 …PetscCheck(M >= m, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "More processes than data points! %"… in DMSetUp_DA_1D() 153 …Check((M - 1) >= s || size <= 1, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Array is too small fo… in DMSetUp_DA_1D() 165 xs = rank * M / m; in DMSetUp_DA_1D() 166 x = (rank + 1) * M / m - xs; in DMSetUp_DA_1D() 168 x = (M + rank) / m; in DMSetUp_DA_1D() [all …]
|
| /petsc/src/ksp/pc/impls/h2opus/ |
| H A D | pch2opus.c | 13 Mat M; member 117 PetscCall(MatDestroy(&pch2opus->M)); in PCDestroy_H2OPUS() 158 Mat M; member 178 PetscInt M, m; in PCH2OpusSetUpInit() local 185 aat.M = pch2opus->M; /* unused so far */ in PCH2OpusSetUpInit() 187 PetscCall(MatGetSize(A, &M, NULL)); in PCH2OpusSetUpInit() 189 PetscCall(MatCreateShell(PetscObjectComm((PetscObject)A), m, m, M, M, &aat, &AAt)); in PCH2OpusSetUpInit() 208 if (t) PetscCall(MatMultTranspose(pch2opus->M, x, y)); in PCApplyKernel_H2OPUS() 209 else PetscCall(MatMult(pch2opus->M, x, y)); in PCApplyKernel_H2OPUS() 218 if (t) PetscCall(MatTransposeMatMult(pch2opus->M, X, MAT_REUSE_MATRIX, PETSC_DETERMINE, &Y)); in PCApplyMatKernel_H2OPUS() [all …]
|
| /petsc/src/mat/tests/ |
| H A D | ex48.c | 9 PetscInt m = 45, rows[2], cols[2], bs = 1, i, row, col, *idx, M; in main() local 22 M = m * bs; in main() 23 PetscCall(MatCreateSeqBAIJ(PETSC_COMM_SELF, bs, M, M, 1, NULL, &A)); in main() 25 PetscCall(MatCreateSeqAIJ(PETSC_COMM_SELF, M, M, 15, NULL, &B)); in main() 29 PetscCall(VecCreateSeq(PETSC_COMM_SELF, M, &xx)); in main() 35 for (row = 0; row < M; row++) { in main() 38 col = PetscMin(M - 1, (PetscInt)(PetscRealPart(rval) * M)); in main() 47 cols[0] = PetscMin(M - 1, (PetscInt)(PetscRealPart(rval) * M)); in main() 50 cols[1] = PetscMin(M - 1, (PetscInt)(PetscRealPart(rval) * M)); in main() 53 rows[0] = PetscMin(M - 1, (PetscInt)(PetscRealPart(rval) * M)); in main() [all …]
|
| H A D | mmio.c | 20 int M, N, nz; in mm_read_unsymmetric_sparse() local 41 if (mm_read_mtx_crd_size(f, &M, &N, &nz) != 0) { in mm_read_unsymmetric_sparse() 46 *M_ = M; in mm_read_unsymmetric_sparse() 140 int mm_write_mtx_crd_size(FILE *f, int M, int N, int nz) in mm_write_mtx_crd_size() argument 142 if (fprintf(f, "%d %d %d\n", M, N, nz) < 0) return MM_COULD_NOT_WRITE_FILE; in mm_write_mtx_crd_size() 146 int mm_read_mtx_crd_size(FILE *f, int *M, int *N, int *nz) in mm_read_mtx_crd_size() argument 152 *M = *N = *nz = 0; in mm_read_mtx_crd_size() 160 if (sscanf(line, "%d %d %d", M, N, nz) == 3) return 0; in mm_read_mtx_crd_size() 163 num_items_read = fscanf(f, "%d %d %d", M, N, nz); in mm_read_mtx_crd_size() 170 int mm_read_mtx_array_size(FILE *f, int *M, int *N) in mm_read_mtx_array_size() argument [all …]
|
| H A D | ex246.cxx | 6 static PetscErrorCode GenEntries(PetscInt sdim, PetscInt M, PetscInt N, const PetscInt *J, const Pe… in GenEntries() argument 12 for (j = 0; j < M; j++) { in GenEntries() 16 ptr[j + M * k] = 1.0 / (1.0e-2 + PetscSqrtReal(diff)); in GenEntries() 29 …virtual void copy_submatrix(PetscInt M, PetscInt N, const PetscInt *J, const PetscInt *K, PetscSca… in copy_submatrix() argument 34 …for (PetscInt j = 0; j < M; j++) /* could be optimized by the user how they see fit, e.g., vectori… in copy_submatrix() 38 ptr[j + M * k] = 1.0 / (1.0e-2 + PetscSqrtReal(diff)); in copy_submatrix() 47 PetscInt m = 100, dim = 3, M, begin = 0; in main() local 62 M = size * m; in main() 63 PetscCall(PetscOptionsGetInt(NULL, NULL, "-M", &M, NULL)); in main() 67 PetscCall(PetscCalloc1(M * dim, &gcoords)); in main() [all …]
|
| /petsc/src/ts/tutorials/advection-diffusion-reaction/ |
| H A D | ex3.c | 55 PetscInt M; in main() local 107 PetscCall(DMDAGetInfo(da, PETSC_IGNORE, &M, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)); in main() 108 dt = .48 / (M * M); in main() 158 PetscInt i, mstart, mend, xm, M; in InitialConditions() local 164 PetscCall(DMDAGetInfo(da, PETSC_IGNORE, &M, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)); in InitialConditions() 165 h = 1.0 / M; in InitialConditions() 206 PetscInt i, mstart, mend, xm, M; in Solution() local 212 PetscCall(DMDAGetInfo(da, PETSC_IGNORE, &M, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)); in Solution() 213 h = 1.0 / M; in Solution() 261 PetscInt i, idx[3], M, xm; in RHSMatrixHeat() local [all …]
|
| /petsc/src/tao/bound/impls/blmvm/ |
| H A D | blmvm.c | 35 PetscCall(MatLMVMReset(blmP->M, PETSC_FALSE)); in TaoSolve_BLMVM() 53 PetscCall(MatLMVMSymBroydenSetDelta(blmP->M, delta)); in TaoSolve_BLMVM() 54 PetscCall(MatLMVMUpdate(blmP->M, tao->solution, tao->gradient)); in TaoSolve_BLMVM() 55 PetscCall(MatSolve(blmP->M, blmP->unprojected_gradient, tao->stepdirection)); in TaoSolve_BLMVM() 65 PetscCall(MatLMVMReset(blmP->M, PETSC_FALSE)); in TaoSolve_BLMVM() 66 PetscCall(MatLMVMUpdate(blmP->M, tao->solution, blmP->unprojected_gradient)); in TaoSolve_BLMVM() 67 PetscCall(MatSolve(blmP->M, blmP->unprojected_gradient, tao->stepdirection)); in TaoSolve_BLMVM() 88 PetscCall(MatLMVMReset(blmP->M, PETSC_FALSE)); in TaoSolve_BLMVM() 89 PetscCall(MatLMVMUpdate(blmP->M, tao->solution, blmP->unprojected_gradient)); in TaoSolve_BLMVM() 90 PetscCall(MatSolve(blmP->M, blmP->unprojected_gradient, tao->stepdirection)); in TaoSolve_BLMVM() [all …]
|
| /petsc/src/tao/unconstrained/impls/lmvm/ |
| H A D | lmvm.c | 34 PetscCall(MatLMVMReset(lmP->M, PETSC_FALSE)); in TaoSolve_LMVM() 47 PetscCall(MatLMVMSetJ0(lmP->M, lmP->H0)); in TaoSolve_LMVM() 50 PetscCall(MatLMVMUpdate(lmP->M, tao->solution, tao->gradient)); in TaoSolve_LMVM() 51 PetscCall(MatSolve(lmP->M, tao->gradient, lmP->D)); in TaoSolve_LMVM() 52 PetscCall(MatLMVMGetUpdateCount(lmP->M, &nupdates)); in TaoSolve_LMVM() 66 PetscCall(MatLMVMReset(lmP->M, PETSC_FALSE)); in TaoSolve_LMVM() 67 PetscCall(MatLMVMClearJ0(lmP->M)); in TaoSolve_LMVM() 68 PetscCall(MatLMVMUpdate(lmP->M, tao->solution, tao->gradient)); in TaoSolve_LMVM() 69 PetscCall(MatSolve(lmP->M, tao->gradient, lmP->D)); in TaoSolve_LMVM() 94 PetscCall(MatLMVMReset(lmP->M, PETSC_FALSE)); in TaoSolve_LMVM() [all …]
|
| /petsc/src/dm/impls/patch/tests/output/ |
| H A D | ex1_3.out | 3 Processor [0] M 4 N 4 m 2 n 2 w 1 s 1 5 Processor [1] M 4 N 4 m 2 n 2 w 1 s 1 7 Processor [2] M 4 N 4 m 2 n 2 w 1 s 1 9 Processor [3] M 4 N 4 m 2 n 2 w 1 s 1 12 Processor [0] M 3 N 3 m 2 n 2 w 1 s 0 14 Processor [1] M 3 N 3 m 2 n 2 w 1 s 0 16 Processor [2] M 3 N 3 m 2 n 2 w 1 s 0 18 Processor [3] M 3 N 3 m 2 n 2 w 1 s 0 46 Processor [0] M 3 N 3 m 2 n 2 w 1 s 0 48 Processor [1] M 3 N 3 m 2 n 2 w 1 s 0 [all …]
|
| /petsc/src/ksp/ksp/tests/ |
| H A D | ex9.c | 37 Mat M, A, P, sA[2][2], sP[2][2]; in main() local 44 …PetscCall(MatCreateFromOptions(PETSC_COMM_WORLD, NULL, 1, 10, 10, PETSC_DECIDE, PETSC_DECIDE, &M)); in main() 45 PetscCall(MatAssemblyBegin(M, MAT_FINAL_ASSEMBLY)); in main() 46 PetscCall(MatAssemblyEnd(M, MAT_FINAL_ASSEMBLY)); in main() 47 PetscCall(MatShift(M, 1.)); in main() 48 PetscCall(MatGetOwnershipRange(M, &rstart, &rend)); in main() 49 PetscCall(ISCreateStride(PetscObjectComm((PetscObject)M), 7, rstart, 1, &f[0])); in main() 53 PetscCall(MatCreateSubMatrix(M, f[i], f[j], MAT_INITIAL_MATRIX, &sA[i][j])); in main() 54 PetscCall(MatCreateSubMatrix(M, f[i], f[j], MAT_INITIAL_MATRIX, &sP[i][j])); in main() 57 PetscCall(MatCreateNest(PetscObjectComm((PetscObject)M), 2, f, 2, f, &sA[0][0], &A)); in main() [all …]
|
| /petsc/src/dm/tests/output/ |
| H A D | ex34_1.out | 3 Processor [0] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 5 Processor [1] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 7 Processor [2] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 9 Processor [3] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 11 Processor [4] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 13 Processor [5] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 15 Processor [6] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 17 Processor [7] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 19 Processor [8] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 21 Processor [9] M 11 N 5 P 7 m 3 n 2 p 2 w 2 s 1 [all …]
|
| /petsc/src/snes/tutorials/ |
| H A D | ex48.c | 97 #define M (-0.5) macro 111 …{{M * H, M *H, M}, {P * H, 0, 0}, {0, 0, 0}, {0, P *H, 0}, {M * L, M *L, P}, {P * L,… 112 …{{M * H, 0, 0}, {P * H, M *H, M}, {0, P *H, 0}, {0, 0, 0}, {M * L, 0, 0}, {P * L,… 113 …{{0, 0, 0}, {0, M *H, 0}, {P * H, P *H, M}, {M * H, 0, 0}, {0, 0, 0}, {0, M *… 114 …{{0, M *H, 0}, {0, 0, 0}, {P * H, 0, 0}, {M * H, P *H, M}, {0, M *L, 0}, {0, 0, … 115 …{{M * L, M *L, M}, {P * L, 0, 0}, {0, 0, 0}, {0, P *L, 0}, {M * H, M *H, P}, {P * H,… 116 …{{M * L, 0, 0}, {P * L, M *L, M}, {0, P *L, 0}, {0, 0, 0}, {M * H, 0, 0}, {P * H,… 117 …{{0, 0, 0}, {0, M *L, 0}, {P * L, P *L, M}, {M * L, 0, 0}, {0, 0, 0}, {0, M *… 118 …{{0, M *L, 0}, {0, 0, 0}, {P * L, 0, 0}, {M * L, P *L, M}, {0, M *H, 0}, {0, 0, … 132 …M * H * H, H * M * H, H * H * M}, {P * H * H, L * M * H, L * H * M}, {P * L * H, L * P * H, L * L … [all …]
|
| /petsc/src/dm/impls/stag/tests/output/ |
| H A D | ex50_dim-3_coords-false.out | 3 Processor [0] M 4 N 3 P 3 m 1 n 1 p 1 w 3 s 1 117 Processor [0] M 4 N 3 P 3 m 1 n 1 p 1 w 1 s 1 159 Processor [0] M 4 N 3 P 3 m 1 n 1 p 1 w 1 s 1 201 Processor [0] M 4 N 3 P 2 m 1 n 1 p 1 w 3 s 1 279 Processor [0] M 4 N 3 P 2 m 1 n 1 p 1 w 1 s 1 309 Processor [0] M 4 N 3 P 2 m 1 n 1 p 1 w 1 s 1 339 Processor [0] M 4 N 3 P 2 m 1 n 1 p 1 w 1 s 1 369 Processor [0] M 4 N 2 P 3 m 1 n 1 p 1 w 3 s 1 447 Processor [0] M 4 N 2 P 3 m 1 n 1 p 1 w 1 s 1 477 Processor [0] M 4 N 2 P 3 m 1 n 1 p 1 w 1 s 1 [all …]
|
| H A D | ex50_dim-2_coords-false.out | 3 Processor [0] M 4 N 3 m 1 n 1 w 3 s 1 45 Processor [0] M 4 N 3 m 1 n 1 w 1 s 1 63 Processor [0] M 4 N 3 m 1 n 1 w 1 s 1 81 Processor [0] M 4 N 2 m 1 n 1 w 3 s 1 111 Processor [0] M 4 N 2 m 1 n 1 w 1 s 1 125 Processor [0] M 3 N 3 m 1 n 1 w 3 s 1 158 Processor [0] M 3 N 3 m 1 n 1 w 1 s 1 173 Processor [0] M 3 N 2 m 1 n 1 w 3 s 1 197 Processor [0] M 3 N 2 m 1 n 1 w 1 s 1 209 Processor [0] M 3 N 2 m 1 n 1 w 1 s 1 [all …]
|
| H A D | ex50_dim-2_coords-true.out | 3 Processor [0] M 4 N 3 m 1 n 1 w 3 s 1 45 Processor [0] M 4 N 3 m 1 n 1 w 1 s 1 63 Processor [0] M 4 N 3 m 1 n 1 w 1 s 1 81 Processor [0] M 4 N 2 m 1 n 1 w 3 s 1 111 Processor [0] M 4 N 2 m 1 n 1 w 1 s 1 125 Processor [0] M 3 N 3 m 1 n 1 w 3 s 1 158 Processor [0] M 3 N 3 m 1 n 1 w 1 s 1 173 Processor [0] M 3 N 2 m 1 n 1 w 3 s 1 197 Processor [0] M 3 N 2 m 1 n 1 w 1 s 1 209 Processor [0] M 3 N 2 m 1 n 1 w 1 s 1 [all …]
|