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
8eb92b67
Commit
8eb92b67
authored
Feb 20, 2017
by
Matthieu Schaller
Browse files
Also update the function call in the vectorised self task.
parent
b68408f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/runner_doiact_vec.c
View file @
8eb92b67
...
...
@@ -287,7 +287,7 @@ __attribute__((always_inline)) INLINE void runner_doself1_density_vec(
if
(
!
cell_is_active
(
c
,
e
))
return
;
if
(
!
cell_is_drifted
(
c
,
e
))
cell_drift
(
c
,
e
);
if
(
!
cell_is_drifted
(
c
,
e
))
cell_drift
_particles
(
c
,
e
);
/* Get the particle cache from the runner and re-allocate
* the cache if it is not big enough for the cell. */
...
...
@@ -536,7 +536,7 @@ __attribute__((always_inline)) INLINE void runner_doself1_density_vec_2(
if
(
!
cell_is_active
(
c
,
e
))
return
;
if
(
!
cell_is_drifted
(
c
,
e
))
cell_drift
(
c
,
e
);
if
(
!
cell_is_drifted
(
c
,
e
))
cell_drift
_particles
(
c
,
e
);
/* TODO: Need to find two active particles, not just one. */
...
...
tests/testDump.c
View file @
8eb92b67
...
...
@@ -81,7 +81,7 @@ int main(int argc, char *argv[]) {
/* Clean the threads */
threadpool_clean
(
&
t
);
/* Return a happy number. */
return
0
;
}
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