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

Added version that reads cache on each cell individually.

parent b875c8ce
No related branches found
No related tags found
1 merge request!320Dopair1 vectorisation merge
......@@ -62,6 +62,11 @@
#define DOPAIR1_NAME "runner_dopair1_density_vec_3"
#endif
#if defined(WITH_VECTORIZATION) && defined(DOPAIR1_VEC_4)
#define DOPAIR1 runner_dopair1_density_vec_4
#define DOPAIR1_NAME "runner_dopair1_density_vec_4"
#endif
#if defined(WITH_VECTORIZATION) && defined(DOPAIR1_AUTO_VEC)
#define DOPAIR1 runner_dopair1_density_auto_vec
#define DOPAIR1_NAME "runner_dopair1_density_auto_vec"
......@@ -323,6 +328,7 @@ void runner_dopair1_density_vec(struct runner *r, struct cell *ci, struct cell *
void runner_dopair1_density_vec_1(struct runner *r, struct cell *ci, struct cell *cj);
void runner_dopair1_density_vec_2(struct runner *r, struct cell *ci, struct cell *cj);
void runner_dopair1_density_vec_3(struct runner *r, struct cell *ci, struct cell *cj);
void runner_dopair1_density_vec_4(struct runner *r, struct cell *ci, struct cell *cj);
void runner_dopair1_density_auto_vec(struct runner *r, struct cell *ci, struct cell *cj);
void runner_doself1_density(struct runner *r, struct cell *ci);
void runner_doself1_density_vec(struct runner *r, struct cell *ci);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment