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
acaed9cf
Commit
acaed9cf
authored
Jul 26, 2017
by
Pedro Gonnet
Browse files
hard-code a finer grained chunk size.
parent
63098d78
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/engine.c
View file @
acaed9cf
...
...
@@ -3640,7 +3640,8 @@ void engine_unskip(struct engine *e) {
/* Activate all the regular tasks */
threadpool_map
(
&
e
->
threadpool
,
runner_do_unskip_mapper
,
e
->
s
->
cells_top
,
e
->
s
->
nr_cells
,
sizeof
(
struct
cell
),
0
,
e
);
e
->
s
->
nr_cells
,
sizeof
(
struct
cell
),
e
->
s
->
nr_cells
/
(
e
->
threadpool
.
num_threads
*
20
),
e
);
/* And the top level gravity FFT one */
if
(
e
->
s
->
periodic
&&
(
e
->
policy
&
engine_policy_self_gravity
))
...
...
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