Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
SWIFT
SWIFTsim
Commits
3c1f8526
Commit
3c1f8526
authored
8 years ago
by
Matthieu Schaller
Browse files
Options
Downloads
Patches
Plain Diff
Drift before send_xv even in the GIZMO case.
parent
c8779c7f
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
src/engine.c
+3
-1
3 additions, 1 deletion
src/engine.c
with
3 additions
and
1 deletion
src/engine.c
+
3
−
1
View file @
3c1f8526
...
@@ -718,9 +718,11 @@ void engine_addtasks_send(struct engine *e, struct cell *ci, struct cell *cj,
...
@@ -718,9 +718,11 @@ void engine_addtasks_send(struct engine *e, struct cell *ci, struct cell *cj,
/* The send_xv task should unlock the super-cell's ghost task. */
/* The send_xv task should unlock the super-cell's ghost task. */
scheduler_addunlock
(
s
,
t_xv
,
ci
->
super
->
ghost
);
scheduler_addunlock
(
s
,
t_xv
,
ci
->
super
->
ghost
);
scheduler_addunlock
(
s
,
ci
->
super
->
drift
,
t_xv
);
#endif
#endif
/* Drift before you send */
scheduler_addunlock
(
s
,
ci
->
super
->
drift
,
t_xv
);
/* The super-cell's kick task should unlock the send_ti task. */
/* The super-cell's kick task should unlock the send_ti task. */
if
(
t_ti
!=
NULL
)
scheduler_addunlock
(
s
,
ci
->
super
->
kick
,
t_ti
);
if
(
t_ti
!=
NULL
)
scheduler_addunlock
(
s
,
ci
->
super
->
kick
,
t_ti
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Matthieu Schaller
@matthieu
mentioned in issue
#256 (closed)
·
8 years ago
mentioned in issue
#256 (closed)
mentioned in issue #256
Toggle commit list
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