Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Timo Koch
dune-common
Commits
6805fc0c
Commit
6805fc0c
authored
12 years ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
Fixed doxygen errors.
[[Imported from SVN: r6678]]
parent
7cff40d8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dune/common/mpicollectivecommunication.hh
+3
-2
3 additions, 2 deletions
dune/common/mpicollectivecommunication.hh
dune/common/parametertreeparser.hh
+4
-0
4 additions, 0 deletions
dune/common/parametertreeparser.hh
dune/common/tupleutility.hh
+2
-2
2 additions, 2 deletions
dune/common/tupleutility.hh
with
9 additions
and
4 deletions
dune/common/mpicollectivecommunication.hh
+
3
−
2
View file @
6805fc0c
...
...
@@ -253,7 +253,7 @@ namespace Dune
root
,
communicator
);
}
//! @copydoc CollectiveCommunication::
g
at
h
er()
//! @copydoc CollectiveCommunication::
sc
at
t
er()
template
<
typename
T
>
int
scatter
(
T
*
send
,
T
*
recv
,
int
len
,
int
root
)
const
// note out must have space for P*len elements
{
...
...
@@ -276,6 +276,7 @@ namespace Dune
communicator
);
}
//! @copydoc CollectiveCommunication::allreduce(Type* inout,int len) const
template
<
typename
BinaryFunction
,
typename
Type
>
int
allreduce
(
Type
*
inout
,
int
len
)
const
{
...
...
@@ -286,7 +287,7 @@ namespace Dune
return
ret
;
}
//! @copydoc CollectiveCommunication::allreduce(
)
//! @copydoc CollectiveCommunication::allreduce(
Type* in,Type* out,int len) const
template
<
typename
BinaryFunction
,
typename
Type
>
int
allreduce
(
Type
*
in
,
Type
*
out
,
int
len
)
const
{
...
...
This diff is collapsed.
Click to expand it.
dune/common/parametertreeparser.hh
+
4
−
0
View file @
6805fc0c
...
...
@@ -72,6 +72,7 @@ namespace Dune {
* Parses C++ stream and build hierarchical config structure.
*
* \param in The stream to parse
* \param pt The parameter tree to store the config structure.
* \param overwrite Whether to overwrite already existing values.
* If false, values in the stream will be ignored
* if the key is already present.
...
...
@@ -89,6 +90,7 @@ namespace Dune {
* Parses C++ stream and build hierarchical config structure.
*
* \param in The stream to parse
* \param pt The parameter tree to store the config structure.
* \param srcname Name of the configuration source for error
* messages, "stdin" or a filename.
* \param overwrite Whether to overwrite already existing values.
...
...
@@ -105,6 +107,7 @@ namespace Dune {
* Parses file with given name and build hierarchical config structure.
*
* \param file filename
* \param pt The parameter tree to store the config structure.
* \param overwrite Whether to overwrite already existing values.
* If false, values in the stream will be ignored
* if the key is already present.
...
...
@@ -122,6 +125,7 @@ namespace Dune {
*
* \param argc arg count
* \param argv arg values
* \param pt The parameter tree to store the config structure.
*/
static
void
readOptions
(
int
argc
,
char
*
argv
[],
ParameterTree
&
pt
);
...
...
This diff is collapsed.
Click to expand it.
dune/common/tupleutility.hh
+
2
−
2
View file @
6805fc0c
...
...
@@ -1766,9 +1766,9 @@ namespace Dune {
/**
* \brief Apply reduce with meta binary function to template
*
* For a tuple<T0,T1,...,TN-1,TN,...> the exported result is
* For a tuple
\
<T0,T1,...,TN-1,TN,...
\
> the exported result is
*
* F< ... F< F< F<Seed,T0
>
::type, T1
>
::type, T2
>
::type, ... TN-1
>
::type
* F
\
< ... F
\
< F
\
< F
\
<Seed,T0
\>\
::type, T1
\>\
::type, T2
\>\
::type, ... TN-1
\>\
::type
*
* \tparam F Binary meta function
* \tparam Tuple Apply reduce operation to this tuple
...
...
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