mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 08:34:37 +08:00
e6b2f532b4
Parallelization of remaining block-diagonal matrix-vector product and vector operations makes parallel execution slightly faster Before (Intel 8176 CPU, 10 iterations): ----------------------------------------------------------------------- Benchmark Time ----------------------------------------------------------------------- PSEPreconditioner...<problem-13682-4456117-pre.txt>/1_median 26677 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/1_stddev 26.6 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/2_median 31037 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/2_stddev 191 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/4_median 16915 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/4_stddev 98.0 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/8_median 9175 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/8_stddev 44.1 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/16_median 4974 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/16_stddev 11.5 ms After: ----------------------------------------------------------------------- Benchmark Time ----------------------------------------------------------------------- PSEPreconditioner...<problem-13682-4456117-pre.txt>/1_median 26609 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/1_stddev 69.4 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/2_median 29178 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/2_stddev 367 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/4_median 16152 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/4_stddev 106 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/8_median 8773 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/8_stddev 41.5 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/16_median 4800 ms PSEPreconditioner...<problem-13682-4456117-pre.txt>/16_stddev 14.7 ms Change-Id: Ib1d1b0c4edf9c556a9e996c49486d2726efcc558
176 lines
7.0 KiB
C++
176 lines
7.0 KiB
C++
// Ceres Solver - A fast non-linear least squares minimizer
|
|
// Copyright 2023 Google Inc. All rights reserved.
|
|
// http://ceres-solver.org/
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
// and/or other materials provided with the distribution.
|
|
// * Neither the name of Google Inc. nor the names of its contributors may be
|
|
// used to endorse or promote products derived from this software without
|
|
// specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
//
|
|
// Author: markshachkov@gmail.com (Mark Shachkov)
|
|
|
|
#include "ceres/power_series_expansion_preconditioner.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "Eigen/Dense"
|
|
#include "ceres/linear_least_squares_problems.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace ceres::internal {
|
|
|
|
const double kEpsilon = 1e-14;
|
|
|
|
class PowerSeriesExpansionPreconditionerTest : public ::testing::Test {
|
|
protected:
|
|
void SetUp() final {
|
|
problem_ = CreateLinearLeastSquaresProblemFromId(5);
|
|
const auto A = down_cast<BlockSparseMatrix*>(problem_->A.get());
|
|
const auto D = problem_->D.get();
|
|
|
|
options_.elimination_groups.push_back(problem_->num_eliminate_blocks);
|
|
options_.preconditioner_type = SCHUR_POWER_SERIES_EXPANSION;
|
|
preconditioner_options_ = Preconditioner::Options(options_);
|
|
isc_ = std::make_unique<ImplicitSchurComplement>(options_);
|
|
isc_->Init(*A, D, problem_->b.get());
|
|
num_f_cols_ = isc_->rhs().rows();
|
|
const int num_rows = A->num_rows(), num_cols = A->num_cols(),
|
|
num_e_cols = num_cols - num_f_cols_;
|
|
|
|
// Using predefined linear operator with schur structure and block-diagonal
|
|
// F'F to explicitly construct schur complement and to calculate its inverse
|
|
// to be used as a reference.
|
|
Matrix A_dense, E, F, DE, DF;
|
|
problem_->A->ToDenseMatrix(&A_dense);
|
|
E = A_dense.leftCols(num_e_cols);
|
|
F = A_dense.rightCols(num_f_cols_);
|
|
DE = VectorRef(D, num_e_cols).asDiagonal();
|
|
DF = VectorRef(D + num_e_cols, num_f_cols_).asDiagonal();
|
|
|
|
sc_inverse_expected_ =
|
|
(F.transpose() *
|
|
(Matrix::Identity(num_rows, num_rows) -
|
|
E * (E.transpose() * E + DE).inverse() * E.transpose()) *
|
|
F +
|
|
DF)
|
|
.inverse();
|
|
}
|
|
std::unique_ptr<LinearLeastSquaresProblem> problem_;
|
|
std::unique_ptr<ImplicitSchurComplement> isc_;
|
|
int num_f_cols_;
|
|
Matrix sc_inverse_expected_;
|
|
LinearSolver::Options options_;
|
|
Preconditioner::Options preconditioner_options_;
|
|
};
|
|
|
|
TEST_F(PowerSeriesExpansionPreconditionerTest,
|
|
InverseValidPreconditionerToleranceReached) {
|
|
const double spse_tolerance = kEpsilon;
|
|
const int max_num_iterations = 50;
|
|
PowerSeriesExpansionPreconditioner preconditioner(
|
|
isc_.get(), max_num_iterations, spse_tolerance, preconditioner_options_);
|
|
|
|
Vector x(num_f_cols_), y(num_f_cols_);
|
|
for (int i = 0; i < num_f_cols_; i++) {
|
|
x.setZero();
|
|
x(i) = 1.0;
|
|
|
|
y.setZero();
|
|
preconditioner.RightMultiplyAndAccumulate(x.data(), y.data());
|
|
EXPECT_LT((y - sc_inverse_expected_.col(i)).norm(), kEpsilon)
|
|
<< "Reference Schur complement inverse and its estimate via "
|
|
"PowerSeriesExpansionPreconditioner differs in "
|
|
<< i
|
|
<< " column.\nreference : " << sc_inverse_expected_.col(i).transpose()
|
|
<< "\nestimated: " << y.transpose();
|
|
}
|
|
}
|
|
|
|
TEST_F(PowerSeriesExpansionPreconditionerTest,
|
|
InverseValidPreconditionerMaxIterations) {
|
|
const double spse_tolerance = 0;
|
|
const int max_num_iterations = 50;
|
|
PowerSeriesExpansionPreconditioner preconditioner_fixed_n_iterations(
|
|
isc_.get(), max_num_iterations, spse_tolerance, preconditioner_options_);
|
|
|
|
Vector x(num_f_cols_), y(num_f_cols_);
|
|
for (int i = 0; i < num_f_cols_; i++) {
|
|
x.setZero();
|
|
x(i) = 1.0;
|
|
|
|
y.setZero();
|
|
preconditioner_fixed_n_iterations.RightMultiplyAndAccumulate(x.data(),
|
|
y.data());
|
|
EXPECT_LT((y - sc_inverse_expected_.col(i)).norm(), kEpsilon)
|
|
<< "Reference Schur complement inverse and its estimate via "
|
|
"PowerSeriesExpansionPreconditioner differs in "
|
|
<< i
|
|
<< " column.\nreference : " << sc_inverse_expected_.col(i).transpose()
|
|
<< "\nestimated: " << y.transpose();
|
|
}
|
|
}
|
|
|
|
TEST_F(PowerSeriesExpansionPreconditionerTest,
|
|
InverseInvalidBadPreconditionerTolerance) {
|
|
const double spse_tolerance = 1 / kEpsilon;
|
|
const int max_num_iterations = 50;
|
|
PowerSeriesExpansionPreconditioner preconditioner_bad_tolerance(
|
|
isc_.get(), max_num_iterations, spse_tolerance, preconditioner_options_);
|
|
|
|
Vector x(num_f_cols_), y(num_f_cols_);
|
|
for (int i = 0; i < num_f_cols_; i++) {
|
|
x.setZero();
|
|
x(i) = 1.0;
|
|
|
|
y.setZero();
|
|
preconditioner_bad_tolerance.RightMultiplyAndAccumulate(x.data(), y.data());
|
|
EXPECT_GT((y - sc_inverse_expected_.col(i)).norm(), kEpsilon)
|
|
<< "Reference Schur complement inverse and its estimate via "
|
|
"PowerSeriesExpansionPreconditioner are too similar, tolerance "
|
|
"stopping criteria failed.";
|
|
}
|
|
}
|
|
|
|
TEST_F(PowerSeriesExpansionPreconditionerTest,
|
|
InverseInvalidBadPreconditionerMaxIterations) {
|
|
const double spse_tolerance = kEpsilon;
|
|
const int max_num_iterations = 1;
|
|
PowerSeriesExpansionPreconditioner preconditioner_bad_iterations_limit(
|
|
isc_.get(), max_num_iterations, spse_tolerance, preconditioner_options_);
|
|
|
|
Vector x(num_f_cols_), y(num_f_cols_);
|
|
for (int i = 0; i < num_f_cols_; i++) {
|
|
x.setZero();
|
|
x(i) = 1.0;
|
|
|
|
y.setZero();
|
|
preconditioner_bad_iterations_limit.RightMultiplyAndAccumulate(x.data(),
|
|
y.data());
|
|
EXPECT_GT((y - sc_inverse_expected_.col(i)).norm(), kEpsilon)
|
|
<< "Reference Schur complement inverse and its estimate via "
|
|
"PowerSeriesExpansionPreconditioner are too similar, maximum "
|
|
"iterations stopping criteria failed.";
|
|
}
|
|
}
|
|
|
|
} // namespace ceres::internal
|