| /petsc/src/binding/petsc4py/demo/legacy/perftest/ |
| H A D | driver.c | 115 PetscInt n,start,step,stop,samples; in main() local 121 PetscCall(GetInt("-stop", &stop, start)); in main() 124 for (n=start; n<=stop; n+=step) { in main()
|
| H A D | driver.py | 118 stop = OptDB.getInt('stop', start) variable 125 for n in range(start, stop+step, step):
|
| /petsc/src/mat/tests/ |
| H A D | ex170.c | 173 PetscBool stop; in main() local 176 PetscCall(VecEqual(c, cnew, &stop)); in main() 177 if (stop) break; in main()
|
| /petsc/src/vec/vec/impls/seq/ |
| H A D | dvec2.c | 519 PetscBool stop = PETSC_FALSE; in VecMultiDot_Seq_GEMV() local 535 stop = PETSC_FALSE; in VecMultiDot_Seq_GEMV() 542 if (lda < 0 || lda > PETSC_BLAS_INT_MAX || lda - n > 64) stop = PETSC_TRUE; in VecMultiDot_Seq_GEMV() 544 stop = PETSC_TRUE; in VecMultiDot_Seq_GEMV() 547 if (stop) break; in VecMultiDot_Seq_GEMV() 707 PetscBool stop = PETSC_FALSE; in VecMAXPY_Seq_GEMV() local 721 stop = PETSC_FALSE; in VecMAXPY_Seq_GEMV() 728 if (lda < 0 || lda > PETSC_BLAS_INT_MAX || lda - n > 64) stop = PETSC_TRUE; in VecMAXPY_Seq_GEMV() 730 stop = PETSC_TRUE; in VecMAXPY_Seq_GEMV() 733 if (stop) break; in VecMAXPY_Seq_GEMV()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | petscdmda.pxi | 305 stop = index.stop 308 if stop is not None: stop -= lbound 309 return slice(start, stop, step)
|
| H A D | arraynpy.pxi | 75 cdef inline ndarray arange(start, stop, stride): argument 77 return PyArray_ArangeObj(start, stop, stride, descr)
|
| H A D | petscvec.pxi | 448 start, stop, stride = i.indices(toInt(N)) 449 i = arange(start, stop, stride) 458 start, stop, stride = i.indices(toInt(N)) 459 i = arange(start, stop, stride)
|
| H A D | petscmat.pxi | 1172 start, stop, stride = rows.indices(toInt(M)) 1173 rows = arange(start, stop, stride) 1176 start, stop, stride = cols.indices(toInt(N)) 1177 cols = arange(start, stop, stride) 1186 start, stop, stride = rows.indices(toInt(M)) 1187 rows = arange(start, stop, stride) 1190 start, stop, stride = cols.indices(toInt(N)) 1191 cols = arange(start, stop, stride)
|
| H A D | PETSc.pyx | 418 # stop stdout/stderr redirect
|
| /petsc/src/vec/vec/impls/seq/kokkos/ |
| H A D | veckok.kokkos.cxx | 535 PetscBool stop = PETSC_FALSE; in VecMultiDot_SeqKokkos_GEMV() local 549 stop = PETSC_FALSE; in VecMultiDot_SeqKokkos_GEMV() 556 …if (lda < 0 || lda - n > 64) stop = PETSC_TRUE; // avoid using arbitrary lda; 64 bytes are a bi… in VecMultiDot_SeqKokkos_GEMV() 558 stop = PETSC_TRUE; in VecMultiDot_SeqKokkos_GEMV() 561 if (stop) break; in VecMultiDot_SeqKokkos_GEMV() 843 PetscBool stop = PETSC_FALSE; in VecMAXPY_SeqKokkos_GEMV() local 856 stop = PETSC_FALSE; in VecMAXPY_SeqKokkos_GEMV() 863 …if (lda < 0 || lda - n > 64) stop = PETSC_TRUE; // avoid using arbitrary lda; 64 bytes are a bi… in VecMAXPY_SeqKokkos_GEMV() 865 stop = PETSC_TRUE; in VecMAXPY_SeqKokkos_GEMV() 868 if (stop) break; in VecMAXPY_SeqKokkos_GEMV()
|
| /petsc/src/ksp/ksp/tutorials/output/ |
| H A D | ex2_help.out | 33 -fp_trap: stop on floating point exceptions 68 …-mat_ignore_zero_entries: <now FALSE : formerly FALSE> For AIJ/IS matrices this will stop zero val…
|
| /petsc/src/benchmarks/streams/ |
| H A D | CUDAVersion.cu | 493 PetscCallCUDA(cudaEventRecord(stop, 0)); in runStream()
|
| /petsc/doc/manual/ |
| H A D | getting_started.md | 144 - `-fp_trap` - stop on floating-point exceptions; for example divide
|
| H A D | ksp.md | 1228 SVD) in a relatively short time. GAMG will stop coarsening when the
|
| H A D | tao.md | 537 convergence test employed by TAO attempts to stop when the error in the
|
| /petsc/share/petsc/datafiles/meshes/ |
| H A D | testcase3D.cas | 1901 (dpm/volume-injection/trying-cycle-stop-criterion? #t) 2494 (dpm/unsteady-stop 0.) 2899 (amg/grouping/stop-method 0) 3299 (prepdf/dufl-stop-rxn? #f) 8805 (user-defined-stop? #f)
|
| /petsc/doc/faq/ |
| H A D | index.md | 589 tolerance boomerAMG uses to decide if to stop before `max_iter` with
|