Lines Matching refs:pivots
44 PetscCheck(mat->pivots, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Pivots not present"); in MatSeqDenseInvertFactors_Private()
50 …PetscCallBLAS("LAPACKgetri", LAPACKgetri_(&n, mat->v, &mat->lda, mat->pivots, mat->fwork, &mat->lf… in MatSeqDenseInvertFactors_Private()
61 PetscCheck(mat->pivots, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Pivots not present"); in MatSeqDenseInvertFactors_Private()
64 …PetscCallBLAS("LAPACKhetri", LAPACKhetri_("L", &n, mat->v, &mat->lda, mat->pivots, mat->fwork, &in… in MatSeqDenseInvertFactors_Private()
69 PetscCheck(mat->pivots, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Pivots not present"); in MatSeqDenseInvertFactors_Private()
72 …PetscCallBLAS("LAPACKsytri", LAPACKsytri_("L", &n, mat->v, &mat->lda, mat->pivots, mat->fwork, &in… in MatSeqDenseInvertFactors_Private()
409 …APACKgetrs", LAPACKgetrs_(T ? "T" : "N", &m, &nrhs, mat->v, &mat->lda, mat->pivots, x, &m, &info)); in MatSolve_SeqDense_Internal_LU()
433 …PetscCallBLAS("LAPACKhetrs", LAPACKhetrs_("L", &m, &nrhs, mat->v, &mat->lda, mat->pivots, x, &m, &… in MatSolve_SeqDense_Internal_Cholesky()
440 …PetscCallBLAS("LAPACKsytrs", LAPACKsytrs_("L", &m, &nrhs, mat->v, &mat->lda, mat->pivots, x, &m, &… in MatSolve_SeqDense_Internal_Cholesky()
797 if (!mat->pivots) PetscCall(PetscMalloc1(A->rmap->n, &mat->pivots)); in MatLUFactor_SeqDense()
800 PetscCallBLAS("LAPACKgetrf", LAPACKgetrf_(&m, &n, mat->v, &mat->lda, mat->pivots, &info)); in MatLUFactor_SeqDense()
851 if (!mat->pivots) PetscCall(PetscMalloc1(A->rmap->n, &mat->pivots)); in MatCholeskyFactor_SeqDense()
857 …PetscCallBLAS("LAPACKhetrf", LAPACKhetrf_("L", &n, mat->v, &mat->lda, mat->pivots, &dummy, &mat->l… in MatCholeskyFactor_SeqDense()
863 …PetscCallBLAS("LAPACKhetrf", LAPACKhetrf_("L", &n, mat->v, &mat->lda, mat->pivots, mat->fwork, &ma… in MatCholeskyFactor_SeqDense()
867 if (!mat->pivots) PetscCall(PetscMalloc1(A->rmap->n, &mat->pivots)); in MatCholeskyFactor_SeqDense()
873 …PetscCallBLAS("LAPACKsytrf", LAPACKsytrf_("L", &n, mat->v, &mat->lda, mat->pivots, &dummy, &mat->l… in MatCholeskyFactor_SeqDense()
879 …PetscCallBLAS("LAPACKsytrf", LAPACKsytrf_("L", &n, mat->v, &mat->lda, mat->pivots, mat->fwork, &ma… in MatCholeskyFactor_SeqDense()
925 if (!mat->pivots) PetscCall(PetscMalloc1(n, &mat->pivots)); in MatQRFactor_SeqDense()
1716 PetscCall(PetscFree(l->pivots)); in MatDestroy_SeqDense()
1817 PetscCall(PetscFree(mat->pivots)); in MatTranspose_SeqDense()