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
e516bbd3
Commit
e516bbd3
authored
14 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
More timings of the graph agglomeration for benchmarking.
[[Imported from SVN: r1419]]
parent
cb40dbe6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/istl/repartition.hh
+14
-1
14 additions, 1 deletion
dune/istl/repartition.hh
with
14 additions
and
1 deletion
dune/istl/repartition.hh
+
14
−
1
View file @
e516bbd3
...
...
@@ -948,6 +948,7 @@ namespace Dune
std
::
cout
<<
"ParMETIS took "
<<
time
.
elapsed
()
<<
std
::
endl
;
time
.
reset
();
#else
Timer
time1
;
std
::
size_t
gnoedges
=
0
;
int
*
noedges
=
0
;
if
(
rank
==
0
)
...
...
@@ -956,6 +957,10 @@ namespace Dune
// gather number of edges for each vertex.
oocomm
.
communicator
().
gather
(
&
noNeighbours
,
noedges
,
1
,
0
);
if
(
verbose
&&
oocomm
.
communicator
().
rank
()
==
0
)
std
::
cout
<<
"Gathering noedges took "
<<
time1
.
elapsed
()
<<
std
::
endl
;
time1
.
reset
();
int
noVertices
=
vtxdist
[
oocomm
.
communicator
().
size
()];
idxtype
*
gxadj
=
0
;
idxtype
*
gvwgt
=
0
;
...
...
@@ -1022,6 +1027,9 @@ namespace Dune
gadjwgt
=
new
idxtype
[
gnoedges
];
}
if
(
verbose
&&
oocomm
.
communicator
().
rank
()
==
0
)
std
::
cout
<<
"Preparing global graph took "
<<
time1
.
elapsed
()
<<
std
::
endl
;
time1
.
reset
();
// Communicate data
MPI_Gatherv
(
xadj
,
2
,
MPITraits
<
idxtype
>::
getType
(),
...
...
@@ -1036,6 +1044,9 @@ namespace Dune
MPI_Gatherv
(
adjwgt
,
noNeighbours
,
MPITraits
<
idxtype
>::
getType
(),
gadjwgt
,
noedges
,
displ
,
MPITraits
<
idxtype
>::
getType
(),
0
,
comm
);
if
(
verbose
&&
oocomm
.
communicator
().
rank
()
==
0
)
std
::
cout
<<
"Gathering global graph data took "
<<
time1
.
elapsed
()
<<
std
::
endl
;
time1
.
reset
();
if
(
rank
==
0
)
{
// create the real gxadj array
...
...
@@ -1065,7 +1076,9 @@ namespace Dune
print_carray
(
Dune
::
dinfo
,
gadjwgt
,
gnoedges
);
Dune
::
dinfo
<<
std
::
endl
;
// everything should be fine now!!!
if
(
verbose
&&
oocomm
.
communicator
().
rank
()
==
0
)
std
::
cout
<<
"Postprocesing global graph data took "
<<
time1
.
elapsed
()
<<
std
::
endl
;
time1
.
reset
();
assert
(
isValidGraph
(
noVertices
,
noVertices
,
gnoedges
,
gxadj
,
gadjncy
,
true
));
...
...
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