Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis
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
iwr
amdis
Commits
6cf1994a
Commit
6cf1994a
authored
9 years ago
by
Praetorius, Simon
Browse files
Options
Downloads
Patches
Plain Diff
mtl4 included in svn tree and patch for umfpack added
parent
a28b315c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
AMDiS/src/solver/UmfPackSolver.h
+5
-5
5 additions, 5 deletions
AMDiS/src/solver/UmfPackSolver.h
AMDiS/src/solver/itl/umfpack2_solve.hpp
+2
-2
2 additions, 2 deletions
AMDiS/src/solver/itl/umfpack2_solve.hpp
with
7 additions
and
7 deletions
AMDiS/src/solver/UmfPackSolver.h
+
5
−
5
View file @
6cf1994a
...
...
@@ -28,7 +28,7 @@
#include
<iostream>
#include
<boost/numeric/mtl/operation/two_norm.hpp>
#include
"solver/itl
/umfpack
2
_solve.hpp
"
#include
<boost/numeric/mtl/interface
/umfpack_solve.hpp
>
#include
"solver/LinearSolver.h"
namespace
AMDiS
{
...
...
@@ -60,8 +60,8 @@ namespace AMDiS {
}
try
{
solver
=
new
mtl
::
matrix
::
umfpack
2
::
solver
<
MatrixType
>
(
fullMatrix
,
symmetric_strategy
,
alloc_init
);
}
catch
(
mtl
::
matrix
::
umfpack
2
::
error
&
e
)
{
solver
=
new
mtl
::
matrix
::
umfpack
::
solver
<
MatrixType
>
(
fullMatrix
,
symmetric_strategy
,
alloc_init
);
}
catch
(
mtl
::
matrix
::
umfpack
::
error
&
e
)
{
ERROR_EXIT
(
"UMFPACK_ERROR(factorize, %d) = %s
\n
"
,
e
.
code
,
e
.
what
());
}
}
...
...
@@ -75,7 +75,7 @@ namespace AMDiS {
int
code
=
0
;
try
{
code
=
(
*
solver
)(
x
,
b
);
}
catch
(
mtl
::
matrix
::
umfpack
2
::
error
&
e
)
{
}
catch
(
mtl
::
matrix
::
umfpack
::
error
&
e
)
{
ERROR_EXIT
(
"UMFPACK_ERROR(solve, %d) = %s
\n
"
,
e
.
code
,
e
.
what
());
}
...
...
@@ -103,7 +103,7 @@ namespace AMDiS {
LinearSolverInterface
&
oem
;
private
:
mtl
::
matrix
::
umfpack
2
::
solver
<
MatrixType
>
*
solver
;
mtl
::
matrix
::
umfpack
::
solver
<
MatrixType
>
*
solver
;
int
store_symbolic
;
...
...
This diff is collapsed.
Click to expand it.
AMDiS/src/solver/itl/umfpack2_solve.hpp
+
2
−
2
View file @
6cf1994a
...
...
@@ -37,7 +37,7 @@ extern "C" {
namespace
mtl
{
namespace
matrix
{
/// Namespace for Umfpack solver
namespace
umfpack
2
{
namespace
umfpack
{
// conversion for value_type needed if not double or complex<double> (where possible)
template
<
typename
Value
>
struct
value
{};
...
...
@@ -556,7 +556,7 @@ namespace mtl { namespace matrix {
template
<
typename
Value
,
typename
Parameters
,
typename
VectorX
,
typename
VectorB
>
int
umfpack2_solve
(
const
compressed2D
<
Value
,
Parameters
>&
A
,
VectorX
&
x
,
const
VectorB
&
b
)
{
umfpack
2
::
solver
<
compressed2D
<
Value
,
Parameters
>
>
solver
(
A
);
umfpack
::
solver
<
compressed2D
<
Value
,
Parameters
>
>
solver
(
A
);
return
solver
(
x
,
b
);
}
...
...
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