Skip to content
Snippets Groups Projects
Commit 83d2a266 authored by James Willis's avatar James Willis
Browse files

Call vectorised dopair2_force_vec.

parent da0e2426
Branches
Tags
1 merge request!440Dopair2 vectorisation
...@@ -1884,8 +1884,13 @@ void *runner_main(void *data) { ...@@ -1884,8 +1884,13 @@ void *runner_main(void *data) {
else if (t->subtype == task_subtype_gradient) else if (t->subtype == task_subtype_gradient)
runner_dopair1_branch_gradient(r, ci, cj); runner_dopair1_branch_gradient(r, ci, cj);
#endif #endif
else if (t->subtype == task_subtype_force) else if (t->subtype == task_subtype_force) {
#if defined(WITH_VECTORIZATION) && defined(GADGET2_SPH)
runner_dopair2_force_vec(r, ci, cj);
#else
runner_dopair2_force(r, ci, cj); runner_dopair2_force(r, ci, cj);
#endif
}
else if (t->subtype == task_subtype_grav) else if (t->subtype == task_subtype_grav)
runner_dopair_grav(r, ci, cj, 1); runner_dopair_grav(r, ci, cj, 1);
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment