Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
eigenpy
Commits
55932f74
Commit
55932f74
authored
7 years ago
by
jcarpent
Browse files
Options
Downloads
Patches
Plain Diff
[Solvers] Expose LSCG with a fix in the preconditionner
parent
824a52b3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-0
1 addition, 0 deletions
CMakeLists.txt
src/solvers/LeastSquaresConjugateGradient.hpp
+121
-0
121 additions, 0 deletions
src/solvers/LeastSquaresConjugateGradient.hpp
src/solvers/solvers.cpp
+2
-0
2 additions, 0 deletions
src/solvers/solvers.cpp
with
124 additions
and
0 deletions
CMakeLists.txt
+
1
−
0
View file @
55932f74
...
...
@@ -92,6 +92,7 @@ SET(HEADERS
quaternion.hpp
solvers/solvers.hpp
solvers/IterativeSolverBase.hpp
solvers/LeastSquaresConjugateGradient.hpp
solvers/ConjugateGradient.hpp
solvers/SparseSolverBase.hpp
)
...
...
This diff is collapsed.
Click to expand it.
src/solvers/LeastSquaresConjugateGradient.hpp
0 → 100644
+
121
−
0
View file @
55932f74
/*
* Copyright 2017, Justin Carpentier, LAAS-CNRS
*
* This file is part of eigenpy.
* eigenpy is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
* eigenpy is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details. You should
* have received a copy of the GNU Lesser General Public License along
* with eigenpy. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __eigenpy_least_square_conjugate_gradient_hpp__
#define __eigenpy_least_square_conjugate_gradient_hpp__
#include
<boost/python.hpp>
#include
<Eigen/IterativeLinearSolvers>
#include
"eigenpy/solvers/IterativeSolverBase.hpp"
namespace
Eigen
{
template
<
typename
_Scalar
>
class
LeastSquareDiagonalPreconditionerFix
:
public
LeastSquareDiagonalPreconditioner
<
_Scalar
>
{
typedef
_Scalar
Scalar
;
typedef
typename
NumTraits
<
Scalar
>::
Real
RealScalar
;
typedef
LeastSquareDiagonalPreconditioner
<
_Scalar
>
Base
;
using
DiagonalPreconditioner
<
_Scalar
>::
m_invdiag
;
public:
LeastSquareDiagonalPreconditionerFix
()
:
Base
()
{}
template
<
typename
MatType
>
explicit
LeastSquareDiagonalPreconditionerFix
(
const
MatType
&
mat
)
:
Base
()
{
compute
(
mat
);
}
template
<
typename
MatType
>
LeastSquareDiagonalPreconditionerFix
&
analyzePattern
(
const
MatType
&
)
{
return
*
this
;
}
template
<
typename
MatType
>
LeastSquareDiagonalPreconditionerFix
&
factorize
(
const
MatType
&
mat
)
{
// Compute the inverse squared-norm of each column of mat
m_invdiag
.
resize
(
mat
.
cols
());
if
(
MatType
::
IsRowMajor
)
{
m_invdiag
.
setZero
();
for
(
Index
j
=
0
;
j
<
mat
.
outerSize
();
++
j
)
{
for
(
typename
MatType
::
InnerIterator
it
(
mat
,
j
);
it
;
++
it
)
m_invdiag
(
it
.
index
())
+=
numext
::
abs2
(
it
.
value
());
}
for
(
Index
j
=
0
;
j
<
mat
.
cols
();
++
j
)
if
(
numext
::
real
(
m_invdiag
(
j
))
>
RealScalar
(
0
))
m_invdiag
(
j
)
=
RealScalar
(
1
)
/
numext
::
real
(
m_invdiag
(
j
));
}
else
{
for
(
Index
j
=
0
;
j
<
mat
.
outerSize
();
++
j
)
{
RealScalar
sum
=
mat
.
col
(
j
).
squaredNorm
();
if
(
sum
>
RealScalar
(
0
))
m_invdiag
(
j
)
=
RealScalar
(
1
)
/
sum
;
else
m_invdiag
(
j
)
=
RealScalar
(
1
);
}
}
Base
::
m_isInitialized
=
true
;
return
*
this
;
}
};
}
namespace
eigenpy
{
namespace
bp
=
boost
::
python
;
template
<
typename
LeastSquaresConjugateGradient
>
struct
LeastSquaresConjugateGradientVisitor
:
public
boost
::
python
::
def_visitor
<
LeastSquaresConjugateGradientVisitor
<
LeastSquaresConjugateGradient
>
>
{
typedef
Eigen
::
MatrixXd
MatrixType
;
template
<
class
PyClass
>
void
visit
(
PyClass
&
cl
)
const
{
cl
.
def
(
bp
::
init
<>
(
"Default constructor"
))
.
def
(
bp
::
init
<
MatrixType
>
(
bp
::
arg
(
"A"
),
"Initialize the solver with matrix A for further || Ax - b || solving.
\n
"
"This constructor is a shortcut for the default constructor followed by a call to compute()."
))
;
}
static
void
expose
()
{
bp
::
class_
<
LeastSquaresConjugateGradient
,
boost
::
noncopyable
>
(
"LeastSquaresConjugateGradient"
,
bp
::
no_init
)
.
def
(
IterativeSolverVisitor
<
LeastSquaresConjugateGradient
>
())
.
def
(
LeastSquaresConjugateGradientVisitor
<
LeastSquaresConjugateGradient
>
())
;
}
};
}
// namespace eigenpy
#endif // ifndef __eigenpy_least_square_conjugate_gradient_hpp__
This diff is collapsed.
Click to expand it.
src/solvers/solvers.cpp
+
2
−
0
View file @
55932f74
...
...
@@ -16,6 +16,7 @@
#include
"eigenpy/solvers/solvers.hpp"
#include
"eigenpy/solvers/ConjugateGradient.hpp"
#include
"eigenpy/solvers/LeastSquaresConjugateGradient.hpp"
namespace
eigenpy
{
...
...
@@ -23,6 +24,7 @@ namespace eigenpy
{
using
namespace
Eigen
;
ConjugateGradientVisitor
<
ConjugateGradient
<
MatrixXd
,
Lower
|
Upper
>
>::
expose
();
LeastSquaresConjugateGradientVisitor
<
LeastSquaresConjugateGradient
<
MatrixXd
,
LeastSquareDiagonalPreconditionerFix
<
MatrixXd
::
Scalar
>
>
>::
expose
();
boost
::
python
::
enum_
<
Eigen
::
ComputationInfo
>
(
"ComputationInfo"
)
.
value
(
"Success"
,
Eigen
::
Success
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment