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
21fe8595
Commit
21fe8595
authored
Oct 26, 2017
by
James Willis
Browse files
Call vectorised version of doself_subset_density when vectorisation enabled.
parent
a890a1ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/runner.c
View file @
21fe8595
...
...
@@ -776,7 +776,11 @@ void runner_do_ghost(struct runner *r, struct cell *c, int timer) {
/* Self-interaction? */
if
(
l
->
t
->
type
==
task_type_self
)
#ifdef WITH_VECTORIZATION
runner_doself_subset_density_vec
(
r
,
finger
,
parts
,
pid
,
count
);
#else
runner_doself_subset_density
(
r
,
finger
,
parts
,
pid
,
count
);
#endif
/* Otherwise, pair interaction? */
else
if
(
l
->
t
->
type
==
task_type_pair
)
{
...
...
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