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
bc56ac5a
Commit
bc56ac5a
authored
Feb 17, 2019
by
Matthieu Schaller
Browse files
Link the star communication tasks to the correct super cell.
parent
38ec5e44
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/engine_maketasks.c
View file @
bc56ac5a
...
...
@@ -270,11 +270,10 @@ void engine_addtasks_send_stars(struct engine *e, struct cell *ci,
ci
->
mpi
.
tag
,
0
,
ci
,
cj
);
/* The send_stars task should unlock the super_cell's kick task. */
// scheduler_addunlock(s, t_feed, ci->super->end_force);
error
(
"need implementing"
);
scheduler_addunlock
(
s
,
t_feed
,
ci
->
hydro
.
super
->
stars
.
stars_out
);
/* Ghost before you send */
//
scheduler_addunlock(s, ci->hydro.super->stars.ghost
_out
, t_feed);
scheduler_addunlock
(
s
,
ci
->
hydro
.
super
->
stars
.
ghost
,
t_feed
);
}
if
(
hydro
==
NULL
)
{
...
...
@@ -2755,7 +2754,7 @@ void engine_maketasks(struct engine *e) {
/* Free the old list of cell-task links. */
if
(
e
->
links
!=
NULL
)
free
(
e
->
links
);
e
->
size_links
=
e
->
sched
.
nr_tasks
*
e
->
links_per_tasks
;
e
->
size_links
=
e
->
sched
.
nr_tasks
*
e
->
links_per_tasks
*
2
;
/* Make sure that we have space for more links than last time. */
if
(
e
->
size_links
<
e
->
nr_links
*
engine_rebuild_link_alloc_margin
)
...
...
src/task.c
View file @
bc56ac5a
...
...
@@ -681,10 +681,9 @@ void task_get_group_name(int type, int subtype, char *cluster) {
break
;
case
task_subtype_gradient
:
if
(
type
==
task_type_send
||
type
==
task_type_recv
)
{
strcpy
(
cluster
,
"None"
);
}
else
{
strcpy
(
cluster
,
"Gradient"
);
strcpy
(
cluster
,
"None"
);
}
else
{
strcpy
(
cluster
,
"Gradient"
);
}
break
;
case
task_subtype_force
:
...
...
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