Searched refs:LAPACK (Results 1 - 11 of 11) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dlapack.h41 class LAPACK { class in namespace:ceres::internal
52 // This function uses the LAPACK dpotrf and dpotrs routines.
82 // This function uses the LAPACK dgels routine.
H A Dlapack.cc37 // C interface to the LAPACK Cholesky factorization and triangular solve.
69 LinearSolverTerminationType LAPACK::SolveInPlaceUsingCholesky(
88 << "LAPACK::dpotrf fatal error."
96 "LAPACK::dpotrf numerical failure. "
105 << "LAPACK::dpotrs fatal error."
115 int LAPACK::EstimateWorkSizeForQR(int num_rows, int num_cols) {
117 LOG(FATAL) << "Ceres was built without a LAPACK library.";
140 << "LAPACK::dgels fatal error."
147 LinearSolverTerminationType LAPACK::SolveInPlaceUsingQR(
156 LOG(FATAL) << "Ceres was built without a LAPACK librar
[all...]
H A Ddense_qr_solver.cc98 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols());
106 summary.termination_type = LAPACK::SolveInPlaceUsingQR(lhs_.rows(),
H A Dschur_complement_solver_test.cc150 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);
H A Dtypes.cc119 CASESTR(LAPACK);
130 STRENUM(LAPACK);
350 if (type == LAPACK) {
H A Ddense_normal_cholesky_solver.cc158 LAPACK::SolveInPlaceUsingCholesky(num_cols,
H A Dunsymmetric_linear_solver_test.cc151 options.dense_linear_algebra_library_type = LAPACK;
157 options.dense_linear_algebra_library_type = LAPACK;
H A Dsolver_impl.cc778 options->dense_linear_algebra_library_type == LAPACK) {
779 *error = "Can't use DENSE_NORMAL_CHOLESKY with LAPACK because "
780 "LAPACK was not enabled when Ceres was built.";
785 options->dense_linear_algebra_library_type == LAPACK) {
786 *error = "Can't use DENSE_QR with LAPACK because "
787 "LAPACK was not enabled when Ceres was built.";
792 options->dense_linear_algebra_library_type == LAPACK) {
793 *error = "Can't use DENSE_SCHUR with LAPACK because "
794 "LAPACK was not enabled when Ceres was built.";
H A Dschur_complement_solver.cc152 LAPACK::SolveInPlaceUsingCholesky(num_rows,
H A Dsolver.cc138 if (options.dense_linear_algebra_library_type == LAPACK) {
140 *error = "Can't use DENSE_NORMAL_CHOLESKY with LAPACK because "
141 "LAPACK was not enabled when Ceres was built.";
146 *error = "Can't use DENSE_QR with LAPACK because "
147 "LAPACK was not enabled when Ceres was built.";
152 *error = "Can't use DENSE_SCHUR with LAPACK because "
153 "LAPACK was not enabled when Ceres was built.";
/external/ceres-solver/include/ceres/
H A Dtypes.h154 // a LAPACK/BLAS implementation. Consequently, its performance is
165 LAPACK enumerator in enum:ceres::DenseLinearAlgebraLibraryType

Completed in 162 milliseconds