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
9c7dab00
There was an error fetching the commit references. Please try again later.
Commit
9c7dab00
authored
8 years ago
by
Tomáš Oberhuber
Browse files
Options
Downloads
Patches
Plain Diff
Added OpenMP paralelization to Merson solver.
parent
58208d3b
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
install
+3
-2
3 additions, 2 deletions
install
src/TNL/Devices/Host.cpp
+6
-6
6 additions, 6 deletions
src/TNL/Devices/Host.cpp
src/TNL/Solvers/ODE/Merson.h
+2
-0
2 additions, 0 deletions
src/TNL/Solvers/ODE/Merson.h
src/TNL/Solvers/ODE/Merson_impl.h
+21
-8
21 additions, 8 deletions
src/TNL/Solvers/ODE/Merson_impl.h
with
32 additions
and
16 deletions
install
+
3
−
2
View file @
9c7dab00
...
@@ -108,8 +108,9 @@ then
...
@@ -108,8 +108,9 @@ then
fi
fi
PYTHON_TEST
=
"
`
python src/Tools/python-path-test.py 2> /dev/null
`
"
if
test
x
`
python src/Tools/python-path-test.py 2> /dev/null
`
!=
xOK
;
echo
"xxxxx
${
PYTHON_TEST
}
xxxxx
\n
"
if
test
PYTHON_TEST
!=
"xOK"
;
then
then
source
${
BUILD_PREFIX
}
/python-version
source
${
BUILD_PREFIX
}
/python-version
echo
""
echo
""
...
...
This diff is collapsed.
Click to expand it.
src/TNL/Devices/Host.cpp
+
6
−
6
View file @
9c7dab00
...
@@ -74,11 +74,11 @@ int Host::getThreadIdx()
...
@@ -74,11 +74,11 @@ int Host::getThreadIdx()
void
Host
::
configSetup
(
Config
::
ConfigDescription
&
config
,
const
String
&
prefix
)
void
Host
::
configSetup
(
Config
::
ConfigDescription
&
config
,
const
String
&
prefix
)
{
{
#ifdef HAVE_OPENMP
#ifdef HAVE_OPENMP
config
.
addEntry
<
bool
>
(
prefix
+
"omp-enabled"
,
"Enable support of OpenMP."
,
true
);
config
.
addEntry
<
bool
>
(
prefix
+
"o
pen
mp-enabled"
,
"Enable support of OpenMP."
,
true
);
config
.
addEntry
<
int
>
(
prefix
+
"omp-max-threads"
,
"Set maximum number of OpenMP threads."
,
omp_get_max_threads
()
);
config
.
addEntry
<
int
>
(
prefix
+
"o
pen
mp-max-threads"
,
"Set maximum number of OpenMP threads."
,
omp_get_max_threads
()
);
#else
#else
config
.
addEntry
<
bool
>
(
prefix
+
"omp-enabled"
,
"Enable support of OpenMP (not supported on this system)."
,
false
);
config
.
addEntry
<
bool
>
(
prefix
+
"o
pen
mp-enabled"
,
"Enable support of OpenMP (not supported on this system)."
,
false
);
config
.
addEntry
<
int
>
(
prefix
+
"omp-max-threads"
,
"Set maximum number of OpenMP threads (not supported on this system)."
,
0
);
config
.
addEntry
<
int
>
(
prefix
+
"o
pen
mp-max-threads"
,
"Set maximum number of OpenMP threads (not supported on this system)."
,
0
);
#endif
#endif
}
}
...
@@ -86,11 +86,11 @@ void Host::configSetup( Config::ConfigDescription& config, const String& prefix
...
@@ -86,11 +86,11 @@ void Host::configSetup( Config::ConfigDescription& config, const String& prefix
bool
Host
::
setup
(
const
Config
::
ParameterContainer
&
parameters
,
bool
Host
::
setup
(
const
Config
::
ParameterContainer
&
parameters
,
const
String
&
prefix
)
const
String
&
prefix
)
{
{
if
(
parameters
.
getParameter
<
bool
>
(
prefix
+
"omp-enabled"
)
)
if
(
parameters
.
getParameter
<
bool
>
(
prefix
+
"o
pen
mp-enabled"
)
)
enableOMP
();
enableOMP
();
else
else
disableOMP
();
disableOMP
();
setMaxThreadsCount
(
parameters
.
getParameter
<
int
>
(
prefix
+
"omp-max-threads"
)
);
setMaxThreadsCount
(
parameters
.
getParameter
<
int
>
(
prefix
+
"o
pen
mp-max-threads"
)
);
return
true
;
return
true
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/TNL/Solvers/ODE/Merson.h
+
2
−
0
View file @
9c7dab00
...
@@ -70,6 +70,8 @@ class Merson : public ExplicitSolver< Problem >
...
@@ -70,6 +70,8 @@ class Merson : public ExplicitSolver< Problem >
* This controls the accuracy of the solver
* This controls the accuracy of the solver
*/
*/
RealType
adaptivity
;
RealType
adaptivity
;
Containers
::
Vector
<
RealType
,
DeviceType
,
IndexType
>
openMPErrorEstimateBuffer
;
};
};
}
// namespace ODE
}
// namespace ODE
...
...
This diff is collapsed.
Click to expand it.
src/TNL/Solvers/ODE/Merson_impl.h
+
21
−
8
View file @
9c7dab00
...
@@ -14,6 +14,8 @@
...
@@ -14,6 +14,8 @@
#include
<TNL/Devices/Cuda.h>
#include
<TNL/Devices/Cuda.h>
#include
<TNL/Config/ParameterContainer.h>
#include
<TNL/Config/ParameterContainer.h>
#include
"Merson.h"
namespace
TNL
{
namespace
TNL
{
namespace
Solvers
{
namespace
Solvers
{
namespace
ODE
{
namespace
ODE
{
...
@@ -85,6 +87,10 @@ template< typename Problem >
...
@@ -85,6 +87,10 @@ template< typename Problem >
Merson
<
Problem
>
::
Merson
()
Merson
<
Problem
>
::
Merson
()
:
adaptivity
(
0.00001
)
:
adaptivity
(
0.00001
)
{
{
if
(
std
::
is_same
<
DeviceType
,
Devices
::
Host
>::
value
)
{
this
->
openMPErrorEstimateBuffer
.
setSize
(
std
::
max
(
1
,
Devices
::
Host
::
getMaxThreadsCount
()
)
);
}
};
};
template
<
typename
Problem
>
template
<
typename
Problem
>
...
@@ -378,16 +384,23 @@ typename Problem :: RealType Merson< Problem > :: computeError( const RealType t
...
@@ -378,16 +384,23 @@ typename Problem :: RealType Merson< Problem > :: computeError( const RealType t
RealType
eps
(
0.0
),
maxEps
(
0.0
);
RealType
eps
(
0.0
),
maxEps
(
0.0
);
if
(
std
::
is_same
<
DeviceType
,
Devices
::
Host
>::
value
)
if
(
std
::
is_same
<
DeviceType
,
Devices
::
Host
>::
value
)
{
{
// TODO: implement OpenMP support
this
->
openMPErrorEstimateBuffer
.
setValue
(
0.0
);
for
(
IndexType
i
=
0
;
i
<
size
;
i
++
)
#pragma omp parallel if( Devices::Host::isOMPEnabled()
)
{
{
RealType
err
=
(
RealType
)
(
tau
/
3.0
*
RealType
localEps
(
0.0
);
abs
(
0.2
*
_k1
[
i
]
+
#pragma omp for
-
0.9
*
_k3
[
i
]
+
for
(
IndexType
i
=
0
;
i
<
size
;
i
++
)
0.8
*
_k4
[
i
]
+
{
-
0.1
*
_k5
[
i
]
)
);
RealType
err
=
(
RealType
)
(
tau
/
3.0
*
eps
=
max
(
eps
,
err
);
abs
(
0.2
*
_k1
[
i
]
+
-
0.9
*
_k3
[
i
]
+
0.8
*
_k4
[
i
]
+
-
0.1
*
_k5
[
i
]
)
);
localEps
=
max
(
localEps
,
err
);
}
this
->
openMPErrorEstimateBuffer
[
Devices
::
Host
::
getThreadIdx
()
]
=
localEps
;
}
}
eps
=
this
->
openMPErrorEstimateBuffer
.
max
();
}
}
if
(
std
::
is_same
<
DeviceType
,
Devices
::
Cuda
>::
value
)
if
(
std
::
is_same
<
DeviceType
,
Devices
::
Cuda
>::
value
)
{
{
...
...
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