Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
c11b5805
There was an error fetching the commit references. Please try again later.
Commit
c11b5805
authored
5 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Extended the LinerSolvers benchmark for MTX matrices
parent
439e69cd
No related branches found
No related tags found
1 merge request
!47
Linear solvers
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Benchmarks/LinearSolvers/benchmarks.h
+2
-2
2 additions, 2 deletions
src/Benchmarks/LinearSolvers/benchmarks.h
src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h
+75
-6
75 additions, 6 deletions
src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h
with
77 additions
and
8 deletions
src/Benchmarks/LinearSolvers/benchmarks.h
+
2
−
2
View file @
c11b5805
...
...
@@ -145,7 +145,7 @@ benchmarkSolver( Benchmark& benchmark,
virtual
HeaderElements
getTableHeader
()
const
override
{
return
HeaderElements
({
"time"
,
"speedup"
,
"converged"
,
"iterations"
,
"residue_precond"
,
"residue_true"
});
return
HeaderElements
({
"time"
,
"stddev"
,
"stddev/time"
,
"speedup"
,
"converged"
,
"iterations"
,
"residue_precond"
,
"residue_true"
});
}
virtual
RowElements
getRowElements
()
const
override
...
...
@@ -160,7 +160,7 @@ benchmarkSolver( Benchmark& benchmark,
r
=
b
-
r
;
const
double
residue_true
=
lpNorm
(
r
,
2.0
)
/
lpNorm
(
b
,
2.0
);
return
RowElements
({
time
,
speedup
,
(
double
)
converged
,
(
double
)
iterations
,
return
RowElements
({
time
,
stddev
,
stddev
/
time
,
speedup
,
(
double
)
converged
,
(
double
)
iterations
,
residue_precond
,
residue_true
});
}
};
...
...
This diff is collapsed.
Click to expand it.
src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h
+
75
−
6
View file @
c11b5805
...
...
@@ -15,6 +15,7 @@
#include
<set>
#include
<sstream>
#include
<string>
#include
<random>
#ifndef NDEBUG
#include
<TNL/Debugging/FPE.h>
...
...
@@ -30,6 +31,7 @@
#include
<TNL/Containers/Partitioner.h>
#include
<TNL/Containers/DistributedVector.h>
#include
<TNL/Matrices/DistributedMatrix.h>
#include
<TNL/Matrices/MatrixReader.h>
#include
<TNL/Solvers/Linear/Preconditioners/Diagonal.h>
#include
<TNL/Solvers/Linear/Preconditioners/ILU0.h>
#include
<TNL/Solvers/Linear/Preconditioners/ILUT.h>
...
...
@@ -115,6 +117,42 @@ parse_comma_list( const Config::ParameterContainer& parameters,
return
set
;
}
// TODO: implement this in TNL::String
bool
ends_with
(
const
std
::
string
&
value
,
const
std
::
string
&
ending
)
{
if
(
ending
.
size
()
>
value
.
size
())
return
false
;
return
std
::
equal
(
ending
.
rbegin
(),
ending
.
rend
(),
value
.
rbegin
());
}
// initialize all vector entries with a unioformly distributed random value from the interval [a, b]
template
<
typename
Vector
>
void
set_random_vector
(
Vector
&
v
,
typename
Vector
::
RealType
a
,
typename
Vector
::
RealType
b
)
{
using
RealType
=
typename
Vector
::
RealType
;
using
IndexType
=
typename
Vector
::
IndexType
;
// random device will be used to obtain a seed for the random number engine
std
::
random_device
rd
;
// initialize the standard mersenne_twister_engine with rd() as the seed
std
::
mt19937
gen
(
rd
());
// create uniform distribution
std
::
uniform_real_distribution
<
RealType
>
dis
(
a
,
b
);
// create host vector
typename
Vector
::
template
Self
<
RealType
,
Devices
::
Host
>
host_v
;
host_v
.
setSize
(
v
.
getSize
()
);
// initialize the host vector
auto
kernel
=
[
&
]
(
IndexType
i
)
{
host_v
[
i
]
=
dis
(
gen
);
};
Algorithms
::
ParallelFor
<
Devices
::
Host
>::
exec
(
(
IndexType
)
0
,
host_v
.
getSize
(),
kernel
);
// copy the data to the device vector
v
=
host_v
;
}
template
<
typename
Matrix
,
typename
Vector
>
void
benchmarkIterativeSolvers
(
Benchmark
&
benchmark
,
...
...
@@ -317,11 +355,42 @@ struct LinearSolversBenchmark
// const Config::ParameterContainer& parameters )
Config
::
ParameterContainer
&
parameters
)
{
const
String
file_matrix
=
parameters
.
getParameter
<
String
>
(
"input-matrix"
);
const
String
file_dof
=
parameters
.
getParameter
<
String
>
(
"input-dof"
);
const
String
file_rhs
=
parameters
.
getParameter
<
String
>
(
"input-rhs"
);
SharedPointer
<
MatrixType
>
matrixPointer
;
VectorType
x0
,
b
;
matrixPointer
->
load
(
parameters
.
getParameter
<
String
>
(
"input-matrix"
)
);
File
(
parameters
.
getParameter
<
String
>
(
"input-dof"
),
std
::
ios_base
::
in
)
>>
x0
;
File
(
parameters
.
getParameter
<
String
>
(
"input-rhs"
),
std
::
ios_base
::
in
)
>>
b
;
// load the matrix
if
(
ends_with
(
file_matrix
,
".mtx"
)
)
{
Matrices
::
MatrixReader
<
MatrixType
>
reader
;
if
(
!
reader
.
readMtxFile
(
file_matrix
,
*
matrixPointer
)
)
return
false
;
}
else
{
matrixPointer
->
load
(
file_matrix
);
}
// load the vectors
if
(
file_dof
&&
file_rhs
)
{
File
(
file_dof
,
std
::
ios_base
::
in
)
>>
x0
;
File
(
file_rhs
,
std
::
ios_base
::
in
)
>>
b
;
}
else
{
// set x0 := 0
x0
.
setSize
(
matrixPointer
->
getColumns
()
);
x0
=
0
;
// generate random vector x
VectorType
x
;
x
.
setSize
(
matrixPointer
->
getColumns
()
);
set_random_vector
(
x
,
1e2
,
1e3
);
// set b := A*x
b
.
setSize
(
matrixPointer
->
getRows
()
);
matrixPointer
->
vectorProduct
(
x
,
b
);
}
typename
MatrixType
::
CompressedRowLengthsVector
rowLengths
;
matrixPointer
->
getCompressedRowLengths
(
rowLengths
);
...
...
@@ -475,9 +544,9 @@ configSetup( Config::ConfigDescription& config )
config
.
addEntryEnum
(
"append"
);
config
.
addEntryEnum
(
"overwrite"
);
config
.
addEntry
<
int
>
(
"loops"
,
"Number of repetitions of the benchmark."
,
10
);
config
.
addRequiredEntry
<
String
>
(
"input-matrix"
,
"File name of the input matrix (in binary TNL format)."
);
config
.
add
Required
Entry
<
String
>
(
"input-dof"
,
"File name of the input DOF vector (in binary TNL format)."
);
config
.
add
Required
Entry
<
String
>
(
"input-rhs"
,
"File name of the input right-hand-side vector (in binary TNL format)."
);
config
.
addRequiredEntry
<
String
>
(
"input-matrix"
,
"File name of the input matrix (in binary TNL
format or textual MTX
format)."
);
config
.
addEntry
<
String
>
(
"input-dof"
,
"File name of the input DOF vector (in binary TNL format)."
,
""
);
config
.
addEntry
<
String
>
(
"input-rhs"
,
"File name of the input right-hand-side vector (in binary TNL format)."
,
""
);
config
.
addEntry
<
String
>
(
"name"
,
"Name of the matrix in the benchmark."
,
""
);
config
.
addEntry
<
int
>
(
"verbose"
,
"Verbose mode."
,
1
);
config
.
addEntry
<
bool
>
(
"reorder-dofs"
,
"Reorder matrix entries corresponding to the same DOF together."
,
false
);
...
...
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