Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
ScalFMM
Commits
5199e5b7
Commit
5199e5b7
authored
Dec 22, 2014
by
BRAMAS Berenger
Browse files
Correct execution for downard and upward pass for the mpi version
parent
e0ae62ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/GroupTree/FGroupTaskStarpuMpiAlgorithm.hpp
View file @
5199e5b7
...
...
@@ -763,7 +763,8 @@ protected:
for
(
int
idxLevel
=
tree
->
getHeight
()
-
2
;
idxLevel
>=
2
;
--
idxLevel
){
int
idxSubGroup
=
0
;
for
(
int
idxGroup
=
0
;
idxGroup
<
tree
->
getNbCellGroupAtLevel
(
idxLevel
)
;
++
idxGroup
){
for
(
int
idxGroup
=
0
;
idxGroup
<
tree
->
getNbCellGroupAtLevel
(
idxLevel
)
&&
idxSubGroup
<
tree
->
getNbCellGroupAtLevel
(
idxLevel
+
1
)
;
++
idxGroup
){
CellContainerClass
*
const
currentCells
=
tree
->
getCellGroup
(
idxLevel
,
idxGroup
);
struct
starpu_task
*
const
task
=
starpu_task_create
();
...
...
@@ -987,7 +988,8 @@ protected:
for
(
int
idxLevel
=
2
;
idxLevel
<=
tree
->
getHeight
()
-
2
;
++
idxLevel
){
int
idxSubGroup
=
0
;
for
(
int
idxGroup
=
0
;
idxGroup
<
tree
->
getNbCellGroupAtLevel
(
idxLevel
)
;
++
idxGroup
){
for
(
int
idxGroup
=
0
;
idxGroup
<
tree
->
getNbCellGroupAtLevel
(
idxLevel
)
&&
idxSubGroup
<
tree
->
getNbCellGroupAtLevel
(
idxLevel
+
1
)
;
++
idxGroup
){
CellContainerClass
*
const
currentCells
=
tree
->
getCellGroup
(
idxLevel
,
idxGroup
);
struct
starpu_task
*
const
task
=
starpu_task_create
();
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment