Lines Matching refs:tau

1974   PetscCall(PetscFree4(ls->B, ls->Binv, ls->tau, ls->work));  in PetscFVDestroy_LeastSquares()
2008 …scInt mstride, PetscInt n, PetscScalar *A, PetscScalar *Ainv, PetscScalar *tau, PetscInt worksize,… in PetscFVLeastSquaresPseudoInverse_Static() argument
2025 PetscCallBLAS("LAPACKgeqrf", LAPACKgeqrf_(&M, &N, A, &lda, tau, work, &ldwork, &info)); in PetscFVLeastSquaresPseudoInverse_Static()
2034 PetscCallBLAS("LAPACKorgqr", LAPACKorgqr_(&M, &N, &K, Q, &lda, tau, work, &ldwork, &info)); in PetscFVLeastSquaresPseudoInverse_Static()
2056 …scInt mstride, PetscInt n, PetscScalar *A, PetscScalar *Ainv, PetscScalar *tau, PetscInt worksize,… in PetscFVLeastSquaresPseudoInverseSVD_Static() argument
2093 for (i = 0; i < PetscMin(M, N); i++) tau[i] = rtau[i]; in PetscFVLeastSquaresPseudoInverseSVD_Static()
2098 …PetscCallBLAS("LAPACKgelss", LAPACKgelss_(&M, &N, &nrhs, A, &lda, Brhs, &ldb, tau, &rcond, &irank,… in PetscFVLeastSquaresPseudoInverseSVD_Static()
2170 …uaresPseudoInverseSVD_Static(numFaces, maxFaces, dim, ls->B, ls->Binv, ls->tau, ls->workSize, ls->… in PetscFVComputeGradient_LeastSquares()
2176 …tSquaresPseudoInverse_Static(numFaces, maxFaces, dim, ls->B, ls->Binv, ls->tau, ls->workSize, ls->… in PetscFVComputeGradient_LeastSquares()
2224 PetscCall(PetscFree4(ls->B, ls->Binv, ls->tau, ls->work)); in PetscFVLeastSquaresSetMaxFaces_LS()
2232 …PetscCall(PetscMalloc4(m * n, &ls->B, maxmn * maxmn, &ls->Binv, minmn, &ls->tau, ls->workSize, &ls… in PetscFVLeastSquaresSetMaxFaces_LS()
2268 ls->tau = NULL; in PetscFVCreate_LeastSquares()