| /petsc/src/sys/tests/output/ |
| H A D | ex8_1.out | 1 [0] TO 1: {1, 0., "ok"} 2 [0] TO 2: {2, 0., "ok"} 3 [1] TO 2: {2, 1., "ok"} 4 [1] TO 3: {3, 1., "ok"} 5 [2] TO 3: {3, 2., "ok"} 6 [2] TO 0: {0, 2., "ok"} 7 [3] TO 0: {0, 3., "ok"} 8 [3] TO 1: {1, 3., "ok"} 9 [0] FROM 2: {0, 2., "ok"} 10 [0] FROM 3: {0, 3., "ok"} [all …]
|
| /petsc/src/sys/tests/ |
| H A D | ex8.c | 8 char ok[3]; member 28 displs[2] = (char *)&dummy.ok - (char *)&dummy; /* offsetof(Unit,ok); */ in MakeDatatype() 72 buf->ok[0] = 'o'; in FRecv() 73 buf->ok[1] = 'k'; in FRecv() 74 buf->ok[2] = 0; in FRecv() 102 todata[n].ok[0] = 'o'; in main() 103 todata[n].ok[1] = 'k'; in main() 104 todata[n].ok[2] = 0; in main() 107 …%s\"}\n", rank, toranks[i], todata[i].rank, (double)PetscRealPart(todata[i].value), todata[i].ok)); in main() 144 …nk, fromranks[ip], fromdata[ip].rank, (double)PetscRealPart(fromdata[ip].value), fromdata[ip].ok)); in main() [all …]
|
| /petsc/doc/developers/ |
| H A D | testing.md | 966 …ok ksp_ksp_tests-ex9_1+pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_t… 967 …not ok diff-ksp_ksp_tests-ex9_1+pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_diag_use_amat-0_pc_fie… 968 …ok ksp_ksp_tests-ex9_1+pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_t… 978 …ok ksp_ksp_tests-ex9_1+pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_diag_use_amat-0_pc_fieldsplit_t… 982 This can still be hard to read and pick out what you want. So use the fact that you want `not ok` 986 $ make test s='src/ksp/ksp/tests/ex9.c' i='*1' v=1 | grep 'not ok' | cut -d# -f2 1036 ok 1 In mat...tests: "./ex138 -f ${DATAFILESPATH}/matrices/small -mat_type aij -matload_block_size … 1037 ok 2 In mat...tests: "Diff of ./ex138 -f ${DATAFILESPATH}/matrices/small -mat_type aij -matload_blo… 1038 ok 3 In mat...tests: "./ex138 -f ${DATAFILESPATH}/matrices/small -mat_type aij -matload_block_size … 1039 ok 4 In mat...tests: "Diff of ./ex138 -f ${DATAFILESPATH}/matrices/small -mat_type aij -matload_blo… [all …]
|
| H A D | style.md | 86 …in a `PetscCount` those sizes will never be reached in practice so it is ok to cast with `(PetscCo…
|
| /petsc/src/ksp/ksp/tests/ |
| H A D | ex3.c | 160 PetscBool ok; in main() local 164 PetscCall(VecEqual(u, build_sol, &ok)); in main() 165 …PetscCheck(ok, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "KSPBuildSolution() returned incorrect solution"); in main()
|
| /petsc/doc/manual/ |
| H A D | tests.md | 57 - `ok` The test passed. 58 - `not ok` The test failed. 59 - `not ok #SKIP` The test was skipped, usually because build 63 - `ok #TODO` The test is under development by the developers.
|
| /petsc/src/mat/tests/ |
| H A D | ex23.c | 741 PetscBool ok; in main() local 806 ok = PETSC_TRUE; in main() 812 …d[i * bs * bs + b1 * bs + b2] - aijbd[i * bs * bs + b1 * bs + b2]) > PETSC_SMALL) ok = PETSC_FALSE; in main() 813 if (!ok) { in main() 818 if (!ok) break; in main() 820 if (!ok) break; in main() 988 PetscBool ok, okt; in CheckMat() local 990 PetscCall(MatMultEqual(A, B, 3, &ok)); in CheckMat() 992 …PetscCheck(ok && okt, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "ERROR ON %s: mult ok ? %d, multtranspose… in CheckMat()
|
| /petsc/config/BuildSystem/config/packages/ |
| H A D | MPI.py | 345 …(ok, err, ret) = Configure.executeShellCommand(self.ping + count + hostname, timeout = 60, log = s… 356 …(ok, err, ret) = Configure.executeShellCommand(self.host + ' '+ hostname, timeout = 60, log = self… 366 …(ok, err, ret) = Configure.executeShellCommand(self.traceroute + ' ' + hostname, timeout = 60, log… 389 ok = self.checkRun(includes, body, executor = self.mpiexecseq, timeout = 120, threads = 1) 390 if not ok: raise RuntimeError(error_message)
|
| /petsc/doc/developers/contributing/ |
| H A D | pipelines.md | 60 Search for `not ok` in the jobs output to find the exact failure
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | libpetsc4py.pyx | 2701 cdef bint ok 2709 ok = retval 2711 stepok[0] = PETSC_TRUE if ok else PETSC_FALSE 2713 dt, ok = retval 2715 stepok[0] = PETSC_TRUE if ok else PETSC_FALSE
|
| /petsc/src/mat/impls/aij/mpi/ |
| H A D | mpiaij.c | 7781 for (PetscInt brow = 0, nc1, nc2, ok = 1; brow < nloc * bs; brow += bs) { // block rows in MatCreateGraph_Simple_AIJ() local 7784 if (nc2 % bs) ok = 0; in MatCreateGraph_Simple_AIJ() 7788 if (nc1 != nc2) ok = 0; in MatCreateGraph_Simple_AIJ() 7790 for (PetscInt jj = 0; jj < nc1 && ok == 1; jj++) { in MatCreateGraph_Simple_AIJ() 7791 if (cols1[jj] != cols2[jj]) ok = 0; in MatCreateGraph_Simple_AIJ() 7792 if (cols1[jj] % bs != jj % bs) ok = 0; in MatCreateGraph_Simple_AIJ() 7798 if (!ok) { in MatCreateGraph_Simple_AIJ()
|
| /petsc/ |
| H A D | gmakefile.test | 315 …@grep '^not ok' $(TESTLOGTAPFILE) | grep -v 'Exceeded timeout' | tee $(TESTDIR)/allgtests-tap-err.…
|
| /petsc/lib/petsc/bin/maint/ |
| H A D | toclapack.sh | 2207 /* Comment out this if block if EMIN is ok */ 4198 /* Comment out this if block if EMIN is ok */
|