blob: 1820bc9fab1e8a6be30365605e4021d306384952 [file] [log] [blame]
Keir Mierle8ebb0732012-04-30 23:09:08 -07001// Ceres Solver - A fast non-linear least squares minimizer
2// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
3// http://code.google.com/p/ceres-solver/
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 <cstddef>
Keir Mierle8ebb0732012-04-30 23:09:08 -070032#include "ceres/block_sparse_matrix.h"
33#include "ceres/block_structure.h"
34#include "ceres/casts.h"
Sameer Agarwal0beab862012-08-13 15:12:01 -070035#include "ceres/internal/scoped_ptr.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070036#include "ceres/linear_least_squares_problems.h"
37#include "ceres/linear_solver.h"
38#include "ceres/schur_complement_solver.h"
39#include "ceres/triplet_sparse_matrix.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070040#include "ceres/types.h"
Sameer Agarwal0beab862012-08-13 15:12:01 -070041#include "glog/logging.h"
42#include "gtest/gtest.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070043
44namespace ceres {
45namespace internal {
46
47class SchurComplementSolverTest : public ::testing::Test {
48 protected:
49 void SetUpFromProblemId(int problem_id) {
50 scoped_ptr<LinearLeastSquaresProblem> problem(
51 CreateLinearLeastSquaresProblemFromId(problem_id));
52
53 CHECK_NOTNULL(problem.get());
54 A.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
55 b.reset(problem->b.release());
56 D.reset(problem->D.release());
57
58 num_cols = A->num_cols();
59 num_rows = A->num_rows();
60 num_eliminate_blocks = problem->num_eliminate_blocks;
61
62 x.reset(new double[num_cols]);
63 sol.reset(new double[num_cols]);
64 sol_d.reset(new double[num_cols]);
65
66 LinearSolver::Options options;
Keir Mierle8ebb0732012-04-30 23:09:08 -070067 options.type = DENSE_QR;
Sameer Agarwala9d8ef82012-05-14 02:28:05 -070068
Keir Mierle8ebb0732012-04-30 23:09:08 -070069 scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
70
71 TripletSparseMatrix triplet_A(A->num_rows(),
72 A->num_cols(),
73 A->num_nonzeros());
74 A->ToTripletSparseMatrix(&triplet_A);
75
76 // Gold standard solutions using dense QR factorization.
77 DenseSparseMatrix dense_A(triplet_A);
Sameer Agarwal956ed7e2013-02-19 07:06:15 -080078 qr->Solve(&dense_A, b.get(), LinearSolver::PerSolveOptions(), sol.get());
Keir Mierle8ebb0732012-04-30 23:09:08 -070079
80 // Gold standard solution with appended diagonal.
81 LinearSolver::PerSolveOptions per_solve_options;
82 per_solve_options.D = D.get();
Sameer Agarwal956ed7e2013-02-19 07:06:15 -080083 qr->Solve(&dense_A, b.get(), per_solve_options, sol_d.get());
Keir Mierle8ebb0732012-04-30 23:09:08 -070084 }
85
Sameer Agarwalb0518732012-05-29 00:27:57 -070086 void ComputeAndCompareSolutions(
87 int problem_id,
88 bool regularization,
89 ceres::LinearSolverType linear_solver_type,
90 ceres::SparseLinearAlgebraLibraryType sparse_linear_algebra_library) {
Keir Mierle8ebb0732012-04-30 23:09:08 -070091 SetUpFromProblemId(problem_id);
92 LinearSolver::Options options;
Sameer Agarwal0c52f1e2012-09-17 11:30:14 -070093 options.elimination_groups.push_back(num_eliminate_blocks);
94 options.elimination_groups.push_back(
95 A->block_structure()->cols.size() - num_eliminate_blocks);
Keir Mierle8ebb0732012-04-30 23:09:08 -070096 options.type = linear_solver_type;
Sameer Agarwalb0518732012-05-29 00:27:57 -070097 options.sparse_linear_algebra_library = sparse_linear_algebra_library;
98
Keir Mierle8ebb0732012-04-30 23:09:08 -070099 scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
100
101 LinearSolver::PerSolveOptions per_solve_options;
102 LinearSolver::Summary summary;
103 if (regularization) {
104 per_solve_options.D = D.get();
105 }
106
107 summary = solver->Solve(A.get(), b.get(), per_solve_options, x.get());
108
109 if (regularization) {
110 for (int i = 0; i < num_cols; ++i) {
111 ASSERT_NEAR(sol_d.get()[i], x[i], 1e-10);
112 }
113 } else {
114 for (int i = 0; i < num_cols; ++i) {
115 ASSERT_NEAR(sol.get()[i], x[i], 1e-10);
116 }
117 }
118 }
119
120 int num_rows;
121 int num_cols;
122 int num_eliminate_blocks;
123
124 scoped_ptr<BlockSparseMatrix> A;
125 scoped_array<double> b;
126 scoped_array<double> x;
127 scoped_array<double> D;
128 scoped_array<double> sol;
129 scoped_array<double> sol_d;
130};
131
132#ifndef CERES_NO_SUITESPARSE
Sameer Agarwalb0518732012-05-29 00:27:57 -0700133TEST_F(SchurComplementSolverTest, SparseSchurWithSuiteSparse) {
134 ComputeAndCompareSolutions(2, false, SPARSE_SCHUR, SUITE_SPARSE);
135 ComputeAndCompareSolutions(3, false, SPARSE_SCHUR, SUITE_SPARSE);
136 ComputeAndCompareSolutions(2, true, SPARSE_SCHUR, SUITE_SPARSE);
137 ComputeAndCompareSolutions(3, true, SPARSE_SCHUR, SUITE_SPARSE);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700138}
Keir Mierle8ebb0732012-04-30 23:09:08 -0700139#endif // CERES_NO_SUITESPARSE
140
Sameer Agarwalb0518732012-05-29 00:27:57 -0700141#ifndef CERES_NO_CXSPARSE
142TEST_F(SchurComplementSolverTest, SparseSchurWithCXSparse) {
143 ComputeAndCompareSolutions(2, false, SPARSE_SCHUR, CX_SPARSE);
144 ComputeAndCompareSolutions(3, false, SPARSE_SCHUR, CX_SPARSE);
145 ComputeAndCompareSolutions(2, true, SPARSE_SCHUR, CX_SPARSE);
146 ComputeAndCompareSolutions(3, true, SPARSE_SCHUR, CX_SPARSE);
147}
148#endif // CERES_NO_CXSPARSE
149
Keir Mierle8ebb0732012-04-30 23:09:08 -0700150TEST_F(SchurComplementSolverTest, DenseSchur) {
Sameer Agarwalb0518732012-05-29 00:27:57 -0700151 // The sparse linear algebra library type is ignored for
152 // DENSE_SCHUR.
153 ComputeAndCompareSolutions(2, false, DENSE_SCHUR, SUITE_SPARSE);
154 ComputeAndCompareSolutions(3, false, DENSE_SCHUR, SUITE_SPARSE);
155 ComputeAndCompareSolutions(2, true, DENSE_SCHUR, SUITE_SPARSE);
156 ComputeAndCompareSolutions(3, true, DENSE_SCHUR, SUITE_SPARSE);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700157}
158
159} // namespace internal
160} // namespace ceres