Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 1 | // Ceres Solver - A fast non-linear least squares minimizer |
Keir Mierle | 7492b0d | 2015-03-17 22:30:16 -0700 | [diff] [blame] | 2 | // Copyright 2015 Google Inc. All rights reserved. |
| 3 | // http://ceres-solver.org/ |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 4 | // |
| 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 Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 33 | #include <cstddef> |
Nikolaus Demmel | 7b8f675 | 2020-09-20 21:45:24 +0200 | [diff] [blame] | 34 | |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 35 | #include "Eigen/Dense" |
Sameer Agarwal | b9f15a5 | 2012-08-18 13:06:19 -0700 | [diff] [blame] | 36 | #include "ceres/dense_sparse_matrix.h" |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 37 | #include "ceres/internal/eigen.h" |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 38 | #include "ceres/lapack.h" |
Sameer Agarwal | 42a84b8 | 2013-02-01 12:22:53 -0800 | [diff] [blame] | 39 | #include "ceres/linear_solver.h" |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 40 | #include "ceres/types.h" |
Sameer Agarwal | 42a84b8 | 2013-02-01 12:22:53 -0800 | [diff] [blame] | 41 | #include "ceres/wall_time.h" |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 42 | |
| 43 | namespace ceres { |
| 44 | namespace internal { |
| 45 | |
| 46 | DenseQRSolver::DenseQRSolver(const LinearSolver::Options& options) |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 47 | : options_(options) { |
| 48 | work_.resize(1); |
| 49 | } |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 50 | |
| 51 | LinearSolver::Summary DenseQRSolver::SolveImpl( |
| 52 | DenseSparseMatrix* A, |
| 53 | const double* b, |
| 54 | const LinearSolver::PerSolveOptions& per_solve_options, |
| 55 | double* x) { |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 56 | 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 Agarwal | b16e118 | 2013-11-25 05:47:43 -0800 | [diff] [blame] | 62 | |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 63 | LinearSolver::Summary DenseQRSolver::SolveUsingLAPACK( |
| 64 | DenseSparseMatrix* A, |
| 65 | const double* b, |
| 66 | const LinearSolver::PerSolveOptions& per_solve_options, |
| 67 | double* x) { |
Sameer Agarwal | 42a84b8 | 2013-02-01 12:22:53 -0800 | [diff] [blame] | 68 | EventLogger event_logger("DenseQRSolver::Solve"); |
| 69 | |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 70 | const int num_rows = A->num_rows(); |
| 71 | const int num_cols = A->num_cols(); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 72 | |
| 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 Agarwal | d61b68a | 2013-08-16 17:02:56 -0700 | [diff] [blame] | 79 | // TODO(sameeragarwal): Since we are copying anyways, the diagonal |
| 80 | // can be appended to the matrix instead of doing it on A. |
Nikolaus Demmel | 7b8f675 | 2020-09-20 21:45:24 +0200 | [diff] [blame] | 81 | lhs_ = A->matrix(); |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 82 | |
| 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 Agarwal | d61b68a | 2013-08-16 17:02:56 -0700 | [diff] [blame] | 96 | const int work_size = |
| 97 | LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols()); |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 98 | VLOG(3) << "Working memory for Dense QR factorization: " |
| 99 | << work_size * sizeof(double); |
| 100 | work_.resize(work_size); |
| 101 | } |
| 102 | |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 103 | LinearSolver::Summary summary; |
| 104 | summary.num_iterations = 1; |
Sameer Agarwal | b16e118 | 2013-11-25 05:47:43 -0800 | [diff] [blame] | 105 | summary.termination_type = LAPACK::SolveInPlaceUsingQR(lhs_.rows(), |
| 106 | lhs_.cols(), |
| 107 | lhs_.data(), |
| 108 | work_.rows(), |
| 109 | work_.data(), |
| 110 | rhs_.data(), |
Sameer Agarwal | 89a592f | 2013-11-26 11:35:49 -0800 | [diff] [blame] | 111 | &summary.message); |
Sameer Agarwal | b16e118 | 2013-11-25 05:47:43 -0800 | [diff] [blame] | 112 | event_logger.AddEvent("Solve"); |
Sameer Agarwal | 33e01b9 | 2013-11-27 10:24:03 -0800 | [diff] [blame] | 113 | if (summary.termination_type == LINEAR_SOLVER_SUCCESS) { |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 114 | VectorRef(x, num_cols) = rhs_.head(num_cols); |
Sameer Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | event_logger.AddEvent("TearDown"); |
| 118 | return summary; |
| 119 | } |
| 120 | |
| 121 | LinearSolver::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 Agarwal | 367b65e | 2013-08-09 10:35:37 -0700 | [diff] [blame] | 131 | 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 Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 137 | // rhs = [b;0] to account for the additional rows in the lhs. |
Sameer Agarwal | 509f68c | 2013-02-20 01:39:03 -0800 | [diff] [blame] | 138 | const int augmented_num_rows = |
| 139 | num_rows + ((per_solve_options.D != NULL) ? num_cols : 0); |
Sameer Agarwal | 5bfa7e4 | 2012-10-05 10:06:27 -0700 | [diff] [blame] | 140 | 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 Agarwal | 42a84b8 | 2013-02-01 12:22:53 -0800 | [diff] [blame] | 145 | event_logger.AddEvent("Setup"); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 146 | |
| 147 | // Solve the system. |
Sameer Agarwal | 080d1d0 | 2013-08-12 16:28:37 -0700 | [diff] [blame] | 148 | VectorRef(x, num_cols) = A->matrix().householderQr().solve(rhs_); |
Sameer Agarwal | 42a84b8 | 2013-02-01 12:22:53 -0800 | [diff] [blame] | 149 | event_logger.AddEvent("Solve"); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 150 | |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 151 | 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 Agarwal | 33e01b9 | 2013-11-27 10:24:03 -0800 | [diff] [blame] | 161 | summary.termination_type = LINEAR_SOLVER_SUCCESS; |
Sameer Agarwal | 89a592f | 2013-11-26 11:35:49 -0800 | [diff] [blame] | 162 | summary.message = "Success."; |
Sameer Agarwal | 42a84b8 | 2013-02-01 12:22:53 -0800 | [diff] [blame] | 163 | |
| 164 | event_logger.AddEvent("TearDown"); |
Keir Mierle | 8ebb073 | 2012-04-30 23:09:08 -0700 | [diff] [blame] | 165 | return summary; |
| 166 | } |
| 167 | |
Nikolaus Demmel | 7b8f675 | 2020-09-20 21:45:24 +0200 | [diff] [blame] | 168 | } // namespace internal |
| 169 | } // namespace ceres |