Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Core Modules
dune-istl
Commits
dcfd7e3a
Verified
Commit
dcfd7e3a
authored
4 years ago
by
Nils-Arne Dreier
Browse files
Options
Downloads
Patches
Plain Diff
rename executable
parent
49e88ec8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!410
playground executable for experimenting with solvers and preconditioners
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bin/CMakeLists.txt
+4
-4
4 additions, 4 deletions
bin/CMakeLists.txt
bin/istl-playground.cc
+5
-5
5 additions, 5 deletions
bin/istl-playground.cc
bin/istl-playground.hh
+0
-0
0 additions, 0 deletions
bin/istl-playground.hh
bin/playground.ini
+0
-0
0 additions, 0 deletions
bin/playground.ini
with
9 additions
and
9 deletions
bin/CMakeLists.txt
+
4
−
4
View file @
dcfd7e3a
add_executable
(
solve_mm
EXCLUDE_FROM_ALL
solve_mm
.cc
)
add_dune_all_flags
(
solve_mm
)
dune_symlink_to_source_files
(
FILES
solve_mm
.ini
)
dune_add_test
(
TARGET
solve_mm
)
add_executable
(
istl-playground
EXCLUDE_FROM_ALL
istl-playground
.cc
)
add_dune_all_flags
(
istl-playground
)
dune_symlink_to_source_files
(
FILES
playground
.ini
)
dune_add_test
(
TARGET
istl-playground
)
This diff is collapsed.
Click to expand it.
bin/
solve_mm
.cc
→
bin/
istl-playground
.cc
+
5
−
5
View file @
dcfd7e3a
...
...
@@ -27,7 +27,7 @@
#include
<dune/istl/paamg/amg.hh>
#include
"
solve_mm
.hh"
#include
"
istl-playground
.hh"
using
VectorFieldType
=
double
;
...
...
@@ -35,12 +35,12 @@ typedef Dune::BCRSMatrix<Dune::FieldMatrix<Dune::Simd::Scalar<VectorFieldType>,1
typedef
Dune
::
BlockVector
<
Dune
::
FieldVector
<
VectorFieldType
,
1
>>
Vec
;
void
printHelp
(){
std
::
cout
<<
"
solve_mm
"
<<
std
::
endl
std
::
cout
<<
"
istl-playground
"
<<
std
::
endl
<<
"Loads and solves a system from MatrixMarket"
<<
std
::
endl
<<
"format and stores the result in MatrixMarket format."
<<
std
::
endl
<<
"This program is thought as test environment to play"
<<
std
::
endl
<<
"around with different solvers and preconditioners."
<<
std
::
endl
<<
"Parameters are read in a ParameterTree from
solve_mm
.ini"
<<
std
::
endl
<<
"Parameters are read in a ParameterTree from
playground
.ini"
<<
std
::
endl
<<
"but can also be passed in by command line arguments."
<<
std
::
endl
<<
std
::
endl
<<
std
::
setw
(
20
)
<<
std
::
left
...
...
@@ -66,7 +66,7 @@ void printHelp(){
<<
"Redistributes the matrix using ParMETIS (default: 0)"
<<
std
::
endl
<<
std
::
setw
(
20
)
<<
std
::
left
<<
"-ini"
<<
"Filename of the ini-file (default:
solve_mm
.ini)"
<<
std
::
endl
<<
"Filename of the ini-file (default:
playground
.ini)"
<<
std
::
endl
<<
std
::
setw
(
20
)
<<
std
::
left
<<
"-check_residual"
<<
"Whether to compute the defect at the end (default: 1)"
<<
std
::
endl
...
...
@@ -89,7 +89,7 @@ int main(int argc, char** argv){
}
Dune
::
ParameterTreeParser
::
readOptions
(
argc
,
argv
,
config
);
Dune
::
ParameterTreeParser
::
readINITree
(
config
.
get
(
"ini"
,
"
solve_mm
.ini"
),
config
,
false
);
Dune
::
ParameterTreeParser
::
readINITree
(
config
.
get
(
"ini"
,
"
playground
.ini"
),
config
,
false
);
if
(
mpihelper
.
size
()
>
1
&&
!
config
.
get
(
"distributed"
,
false
)
&&
!
config
.
get
(
"redistribute"
,
false
)){
std
::
cerr
<<
"To run this program in parallel you either need to load a distributed"
...
...
This diff is collapsed.
Click to expand it.
bin/
solve_mm
.hh
→
bin/
istl-playground
.hh
+
0
−
0
View file @
dcfd7e3a
File moved
This diff is collapsed.
Click to expand it.
bin/
solve_mm
.ini
→
bin/
playground
.ini
+
0
−
0
View file @
dcfd7e3a
File moved
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