Home
last modified time | relevance | path

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

/petsc/src/mat/impls/aij/mpi/
H A Dmpiaij.c5769 …PetscInt *rowlen, *bufj, *bufJ, ncols = 0, aBn = a->B->cmap->n, row, *b_othi, *b_othj, *r… in MatGetBrowsOfAoCols_MPIAIJ() local
5851 PetscCall(PetscMalloc1(aBn + 1, &b_othi)); in MatGetBrowsOfAoCols_MPIAIJ()
5853 b_othi[0] = 0; in MatGetBrowsOfAoCols_MPIAIJ()
5860 b_othi[k + 1] = b_othi[k] + rowlen[j]; in MatGetBrowsOfAoCols_MPIAIJ()
5869 PetscCall(PetscMalloc1(b_othi[aBn], &b_othj)); in MatGetBrowsOfAoCols_MPIAIJ()
5870 PetscCall(PetscMalloc1(b_othi[aBn], &b_otha)); in MatGetBrowsOfAoCols_MPIAIJ()
5934 …PetscCall(MatCreateSeqAIJWithArrays(PETSC_COMM_SELF, aBn, B->cmap->N, b_othi, b_othj, b_otha, B_ot… in MatGetBrowsOfAoCols_MPIAIJ()