Home
last modified time | relevance | path

Searched refs:err_hist_max (Results 1 – 3 of 3) sorted by relevance

/petsc/include/petsc/private/
H A Dkspimpl.h117 PetscCount err_hist_max; /* total entry count of storage in error history */ member
226 if (dm && ksp->err_hist && ksp->err_hist_max > ksp->err_hist_len) { in KSPLogErrorHistory()
/petsc/src/ksp/ksp/interface/
H A Ditfunc.c2546 ksp->err_hist_max = na; in KSPSetErrorHistory()
2548 if (na != PETSC_DECIDE && na != PETSC_DEFAULT) ksp->err_hist_max = (size_t)na; in KSPSetErrorHistory()
2549 else ksp->err_hist_max = 10000; /* like default ksp->max_it */ in KSPSetErrorHistory()
2550 PetscCall(PetscCalloc1(ksp->err_hist_max, &ksp->err_hist_alloc)); in KSPSetErrorHistory()
H A Ditcreate.c768 ksp->err_hist_max = 0; in KSPCreate()