HomeSort by relevance Sort by last modified time
    Searched refs:LAPACK (Results 1 - 11 of 11) sorted by null

  /external/ceres-solver/internal/ceres/
lapack.h 37 class LAPACK {
48 // This function uses the LAPACK dpotrf and dpotrs routines.
74 // This function uses the LAPACK dgels routine.
lapack.cc 31 #include "ceres/lapack.h"
34 // C interface to the LAPACK Cholesky factorization and triangular solve.
66 int LAPACK::SolveInPlaceUsingCholesky(int num_rows,
94 int LAPACK::EstimateWorkSizeForQR(int num_rows, int num_cols) {
96 LOG(FATAL) << "Ceres was built without a LAPACK library.";
121 int LAPACK::SolveUsingQR(int num_rows,
128 LOG(FATAL) << "Ceres was built without a LAPACK library.";
schur_complement_solver_test.cc 150 ComputeAndCompareSolutions(2, false, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true);
151 ComputeAndCompareSolutions(2, true, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true);
155 ComputeAndCompareSolutions(3, false, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true);
156 ComputeAndCompareSolutions(3, true, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true);
dense_qr_solver.cc 39 #include "ceres/lapack.h"
97 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols());
103 const int info = LAPACK::SolveUsingQR(lhs_.rows(),
unsymmetric_linear_solver_test.cc 139 options.dense_linear_algebra_library_type = LAPACK;
145 options.dense_linear_algebra_library_type = LAPACK;
types.cc 117 CASESTR(LAPACK);
128 STRENUM(LAPACK);
344 if (type == LAPACK) {
dense_normal_cholesky_solver.cc 40 #include "ceres/lapack.h"
145 const int info = LAPACK::SolveInPlaceUsingCholesky(num_cols, lhs.data(), x);
schur_complement_solver.cc 47 #include "ceres/lapack.h"
143 const int info = LAPACK::SolveInPlaceUsingCholesky(num_rows,
solver_impl.cc     [all...]
  /external/ceres-solver/include/ceres/
types.h 131 LAPACK
  /external/eigen/blas/
lsame.f 3 * -- LAPACK auxiliary routine (version 3.1) --

Completed in 243 milliseconds