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
SWIFT
SWIFTsim
Commits
d9fb8582
Commit
d9fb8582
authored
May 27, 2013
by
Pedro Gonnet
Browse files
rely less on OpenMP.
Former-commit-id: a976ad9599ebd77cfcecdd12497ee580f92c9a4b
parent
6d5a0803
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/space.c
View file @
d9fb8582
...
...
@@ -452,7 +452,7 @@ void space_rebuild ( struct space *s , double cell_max ) {
ih
[
0
]
=
s
->
ih
[
0
];
ih
[
1
]
=
s
->
ih
[
1
];
ih
[
2
]
=
s
->
ih
[
2
];
dim
[
0
]
=
s
->
dim
[
0
];
dim
[
1
]
=
s
->
dim
[
1
];
dim
[
2
]
=
s
->
dim
[
2
];
cdim
[
0
]
=
s
->
cdim
[
0
];
cdim
[
1
]
=
s
->
cdim
[
1
];
cdim
[
2
]
=
s
->
cdim
[
2
];
#pragma omp parallel for private(p,j)
//
#pragma omp parallel for private(p,j)
for
(
k
=
0
;
k
<
nr_parts
;
k
++
)
{
p
=
&
parts
[
k
];
for
(
j
=
0
;
j
<
3
;
j
++
)
...
...
@@ -498,9 +498,19 @@ void space_rebuild ( struct space *s , double cell_max ) {
/* At this point, we have the upper-level cells, old or new. Now make
sure that the parts in each cell are ok. */
// tic = getticks();
#pragma omp parallel for schedule(dynamic,1) shared(s)
for
(
k
=
0
;
k
<
s
->
nr_cells
;
k
++
)
space_split
(
s
,
&
s
->
cells
[
k
]
);
k
=
0
;
#pragma omp parallel shared(s,k)
{
while
(
1
)
{
int
myk
;
#pragma omp critical
myk
=
k
++
;
if
(
myk
<
s
->
nr_cells
)
space_split
(
s
,
&
s
->
cells
[
myk
]
);
else
break
;
}
}
// printf( "space_rebuild: space_rebuild_recurse took %.3f ms.\n" , (double)(getticks() - tic) / CPU_TPS * 1000 );
/* Now that we have the cell structre, re-build the tasks. */
...
...
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