Home
last modified time | relevance | path

Searched refs:alloced (Results 1 – 7 of 7) sorted by relevance

/petsc/src/mat/tests/output/
H A Dex134_1.out7 [0] Local rows 4 nz 32 nz alloced 32 bs 2 mem.
10 [1] Local rows 4 nz 32 nz alloced 32 bs 2 mem.
47 [0] Local rows 4 nz 28 nz alloced 32 bs 2 mem.
50 [1] Local rows 4 nz 12 nz alloced 32 bs 2 mem.
82 [0] Local rows 2 nz 8 nz alloced 8 bs 1 mem.
85 [1] Local rows 2 nz 8 nz alloced 8 bs 1 mem.
118 [0] Local rows 2 nz 7 nz alloced 8 bs 1 mem.
121 [1] Local rows 2 nz 3 nz alloced 8 bs 1 mem.
H A Dex135_1.out6 [0] Local rows 250 nz 500 nz alloced 500 bs 1 mem 18900.
9 [1] Local rows 250 nz 500 nz alloced 500 bs 1 mem 18900.
12 [2] Local rows 250 nz 500 nz alloced 500 bs 1 mem 18900.
15 [3] Local rows 250 nz 499 nz alloced 500 bs 1 mem 19398.
/petsc/src/ksp/ksp/impls/cg/gltr/
H A Dgltr.c623 if (t_size > cg->alloced) { in KSPCGSolve_GLTR()
624 if (cg->alloced) { in KSPCGSolve_GLTR()
627 cg->alloced += cg->init_alloc; in KSPCGSolve_GLTR()
629 cg->alloced = cg->init_alloc; in KSPCGSolve_GLTR()
632 while (t_size > cg->alloced) cg->alloced += cg->init_alloc; in KSPCGSolve_GLTR()
634 cg->alloced = PetscMin(cg->alloced, t_size); in KSPCGSolve_GLTR()
635 PetscCall(PetscMalloc2(10 * cg->alloced, &cg->rwork, 5 * cg->alloced, &cg->iwork)); in KSPCGSolve_GLTR()
921 if (cg->alloced) PetscCall(PetscFree2(cg->rwork, cg->iwork)); in KSPCGDestroy_GLTR()
1050 cg->alloced = 0; in KSPCreate_GLTR()
H A Dgltrimpl.h42 PetscInt alloced; /* Size of workspace vectors allocated */ member
/petsc/src/ksp/ksp/tutorials/output/
H A Dex7_2.out113 [0] Local rows 12 nz 50 nz alloced 120 mem 0., not using I-node routines
116 [1] Local rows 12 nz 50 nz alloced 120 mem 0., not using I-node routines
H A Dex7f_2.out113 [0] Local rows 12 nz 50 nz alloced 120 mem 0., not using I-node routines
116 [1] Local rows 12 nz 50 nz alloced 120 mem 0., not using I-node routines
/petsc/src/vec/vec/impls/seq/cupm/
H A Dvecseqcupm_impl.hpp360 if (auto &alloced = wseq->array_allocated) { in GetLocalVector() local
363 PetscCall(PetscFree(alloced)); in GetLocalVector()