blob: 44388f30aee83509e8d07109505aa220dbae1de5 [file] [log] [blame]
Keir Mierle8ebb0732012-04-30 23:09:08 -07001// Ceres Solver - A fast non-linear least squares minimizer
Keir Mierle7492b0d2015-03-17 22:30:16 -07002// Copyright 2015 Google Inc. All rights reserved.
3// http://ceres-solver.org/
Keir Mierle8ebb0732012-04-30 23:09:08 -07004//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: sameeragarwal@google.com (Sameer Agarwal)
30
31#include "ceres/dense_qr_solver.h"
32
Sameer Agarwal367b65e2013-08-09 10:35:37 -070033#include <cstddef>
Nikolaus Demmel7b8f6752020-09-20 21:45:24 +020034
Keir Mierle8ebb0732012-04-30 23:09:08 -070035#include "Eigen/Dense"
Sameer Agarwalb9f15a52012-08-18 13:06:19 -070036#include "ceres/dense_sparse_matrix.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070037#include "ceres/internal/eigen.h"
Sameer Agarwal367b65e2013-08-09 10:35:37 -070038#include "ceres/lapack.h"
Sameer Agarwal42a84b82013-02-01 12:22:53 -080039#include "ceres/linear_solver.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070040#include "ceres/types.h"
Sameer Agarwal42a84b82013-02-01 12:22:53 -080041#include "ceres/wall_time.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070042
43namespace ceres {
44namespace internal {
45
46DenseQRSolver::DenseQRSolver(const LinearSolver::Options& options)
Sameer Agarwal367b65e2013-08-09 10:35:37 -070047 : options_(options) {
48 work_.resize(1);
49}
Keir Mierle8ebb0732012-04-30 23:09:08 -070050
51LinearSolver::Summary DenseQRSolver::SolveImpl(
52 DenseSparseMatrix* A,
53 const double* b,
54 const LinearSolver::PerSolveOptions& per_solve_options,
55 double* x) {
Sameer Agarwal367b65e2013-08-09 10:35:37 -070056 if (options_.dense_linear_algebra_library_type == EIGEN) {
57 return SolveUsingEigen(A, b, per_solve_options, x);
58 } else {
59 return SolveUsingLAPACK(A, b, per_solve_options, x);
60 }
61}
Sameer Agarwalb16e1182013-11-25 05:47:43 -080062
Sameer Agarwal367b65e2013-08-09 10:35:37 -070063LinearSolver::Summary DenseQRSolver::SolveUsingLAPACK(
64 DenseSparseMatrix* A,
65 const double* b,
66 const LinearSolver::PerSolveOptions& per_solve_options,
67 double* x) {
Sameer Agarwal42a84b82013-02-01 12:22:53 -080068 EventLogger event_logger("DenseQRSolver::Solve");
69
Keir Mierle8ebb0732012-04-30 23:09:08 -070070 const int num_rows = A->num_rows();
71 const int num_cols = A->num_cols();
Keir Mierle8ebb0732012-04-30 23:09:08 -070072
73 if (per_solve_options.D != NULL) {
74 // Temporarily append a diagonal block to the A matrix, but undo
75 // it before returning the matrix to the user.
76 A->AppendDiagonal(per_solve_options.D);
77 }
78
Sameer Agarwald61b68a2013-08-16 17:02:56 -070079 // TODO(sameeragarwal): Since we are copying anyways, the diagonal
80 // can be appended to the matrix instead of doing it on A.
Nikolaus Demmel7b8f6752020-09-20 21:45:24 +020081 lhs_ = A->matrix();
Sameer Agarwal367b65e2013-08-09 10:35:37 -070082
83 if (per_solve_options.D != NULL) {
84 // Undo the modifications to the matrix A.
85 A->RemoveDiagonal();
86 }
87
88 // rhs = [b;0] to account for the additional rows in the lhs.
89 if (rhs_.rows() != lhs_.rows()) {
90 rhs_.resize(lhs_.rows());
91 }
92 rhs_.setZero();
93 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
94
95 if (work_.rows() == 1) {
Sameer Agarwald61b68a2013-08-16 17:02:56 -070096 const int work_size =
97 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols());
Sameer Agarwal367b65e2013-08-09 10:35:37 -070098 VLOG(3) << "Working memory for Dense QR factorization: "
99 << work_size * sizeof(double);
100 work_.resize(work_size);
101 }
102
Sameer Agarwal367b65e2013-08-09 10:35:37 -0700103 LinearSolver::Summary summary;
104 summary.num_iterations = 1;
Sameer Agarwalb16e1182013-11-25 05:47:43 -0800105 summary.termination_type = LAPACK::SolveInPlaceUsingQR(lhs_.rows(),
106 lhs_.cols(),
107 lhs_.data(),
108 work_.rows(),
109 work_.data(),
110 rhs_.data(),
Sameer Agarwal89a592f2013-11-26 11:35:49 -0800111 &summary.message);
Sameer Agarwalb16e1182013-11-25 05:47:43 -0800112 event_logger.AddEvent("Solve");
Sameer Agarwal33e01b92013-11-27 10:24:03 -0800113 if (summary.termination_type == LINEAR_SOLVER_SUCCESS) {
Sameer Agarwal367b65e2013-08-09 10:35:37 -0700114 VectorRef(x, num_cols) = rhs_.head(num_cols);
Sameer Agarwal367b65e2013-08-09 10:35:37 -0700115 }
116
117 event_logger.AddEvent("TearDown");
118 return summary;
119}
120
121LinearSolver::Summary DenseQRSolver::SolveUsingEigen(
122 DenseSparseMatrix* A,
123 const double* b,
124 const LinearSolver::PerSolveOptions& per_solve_options,
125 double* x) {
126 EventLogger event_logger("DenseQRSolver::Solve");
127
128 const int num_rows = A->num_rows();
129 const int num_cols = A->num_cols();
130
Sameer Agarwal367b65e2013-08-09 10:35:37 -0700131 if (per_solve_options.D != NULL) {
132 // Temporarily append a diagonal block to the A matrix, but undo
133 // it before returning the matrix to the user.
134 A->AppendDiagonal(per_solve_options.D);
135 }
136
Keir Mierle8ebb0732012-04-30 23:09:08 -0700137 // rhs = [b;0] to account for the additional rows in the lhs.
Sameer Agarwal509f68c2013-02-20 01:39:03 -0800138 const int augmented_num_rows =
139 num_rows + ((per_solve_options.D != NULL) ? num_cols : 0);
Sameer Agarwal5bfa7e42012-10-05 10:06:27 -0700140 if (rhs_.rows() != augmented_num_rows) {
141 rhs_.resize(augmented_num_rows);
142 rhs_.setZero();
143 }
144 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
Sameer Agarwal42a84b82013-02-01 12:22:53 -0800145 event_logger.AddEvent("Setup");
Keir Mierle8ebb0732012-04-30 23:09:08 -0700146
147 // Solve the system.
Sameer Agarwal080d1d02013-08-12 16:28:37 -0700148 VectorRef(x, num_cols) = A->matrix().householderQr().solve(rhs_);
Sameer Agarwal42a84b82013-02-01 12:22:53 -0800149 event_logger.AddEvent("Solve");
Keir Mierle8ebb0732012-04-30 23:09:08 -0700150
Keir Mierle8ebb0732012-04-30 23:09:08 -0700151 if (per_solve_options.D != NULL) {
152 // Undo the modifications to the matrix A.
153 A->RemoveDiagonal();
154 }
155
156 // We always succeed, since the QR solver returns the best solution
157 // it can. It is the job of the caller to determine if the solution
158 // is good enough or not.
159 LinearSolver::Summary summary;
160 summary.num_iterations = 1;
Sameer Agarwal33e01b92013-11-27 10:24:03 -0800161 summary.termination_type = LINEAR_SOLVER_SUCCESS;
Sameer Agarwal89a592f2013-11-26 11:35:49 -0800162 summary.message = "Success.";
Sameer Agarwal42a84b82013-02-01 12:22:53 -0800163
164 event_logger.AddEvent("TearDown");
Keir Mierle8ebb0732012-04-30 23:09:08 -0700165 return summary;
166}
167
Nikolaus Demmel7b8f6752020-09-20 21:45:24 +0200168} // namespace internal
169} // namespace ceres