Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-fem-dg
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
Container Registry
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
dune-fem
dune-fem-dg
Commits
ec4dc36b
Commit
ec4dc36b
authored
11 years ago
by
Robert Kloefkorn
Browse files
Options
Downloads
Patches
Plain Diff
bug fix for initial call, use the pass's compute method because the iteration can
differ.
parent
e8d169ef
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/fem-dg/pass/threadpass.hh
+7
-16
7 additions, 16 deletions
dune/fem-dg/pass/threadpass.hh
with
7 additions
and
16 deletions
dune/fem-dg/pass/threadpass.hh
+
7
−
16
View file @
ec4dc36b
...
...
@@ -402,14 +402,11 @@ namespace Dune {
if
(
firstCall_
)
{
//! get pass for my thread
InnerP
as
s
Type
&
myPass
=
pass
(
0
);
B
as
e
Type
&
myPass
=
pass
(
0
);
// stop time
Timer
timer
;
// pepare
myPass
.
prepare
(
arg
,
dest
);
// for the first call we need to receive data already here,
// since the flux calculation is done at once
if
(
useNonBlockingCommunication
()
)
...
...
@@ -417,17 +414,9 @@ namespace Dune {
// RECEIVE DATA, send was done on call of operator() (see pass.hh)
receiveCommunication
(
arg
);
}
// Iterator is of same type as the space iterator
typedef
typename
DiscreteFunctionSpaceType
::
IteratorType
Iterator
;
const
Iterator
endit
=
spc_
.
end
();
for
(
Iterator
it
=
spc_
.
begin
();
it
!=
endit
;
++
it
)
{
myPass
.
applyLocal
(
*
it
);
}
// finalize pass
myPass
.
finalize
(
arg
,
dest
);
// use the default compute method of the given pass
myPass
.
compute
(
arg
,
dest
);
// get number of elements
numberOfElements_
=
myPass
.
numberOfElements
();
...
...
@@ -436,6 +425,8 @@ namespace Dune {
// set tot false since first call has been done
firstCall_
=
false
;
return
;
}
else
{
...
...
@@ -532,7 +523,7 @@ namespace Dune {
//! return true if communication is necessary and non-blocking should be used
bool
useNonBlockingCommunication
()
const
{
return
requireCommunication_
&&
nonBlockingComm_
.
nonBlockingCommunication
();
return
requireCommunication_
&&
nonBlockingComm_
.
nonBlockingCommunication
()
&&
firstCall_
==
false
;
}
void
initComm
()
const
...
...
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