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

Fixed seg fault bug. Make sure that max_index_i[ci->count - 1] and...

Fixed seg fault bug. Make sure that max_index_i[ci->count - 1] and max_index_j[0] are initialised to correct values when nothing is in range.
parent 7b820953
No related branches found
No related tags found
1 merge request!396Avx512 fixes
......@@ -279,7 +279,7 @@ __attribute__((always_inline)) INLINE static void populate_max_d_no_cache(
const struct part *pi = &parts_i[sort_i[first_pi].i];
/* Loop through particles in cell j until they are not in range of pi. */
while(temp <= cj->count && sort_i[first_pi].d + (pi->h * kernel_gamma + dx_max - rshift) > sort_j[temp].d)
while(temp <= cj->count && (sort_i[first_pi].d + (pi->h * kernel_gamma + dx_max - rshift) > sort_j[temp].d))
temp++;
max_index_i[first_pi] = temp;
......@@ -288,13 +288,17 @@ __attribute__((always_inline)) INLINE static void populate_max_d_no_cache(
for(int i = first_pi + 1; i<ci->count; i++) {
temp = max_index_i[i - 1];
while(temp <= cj->count && sort_i[i].d + (pi->h * kernel_gamma + dx_max - rshift) > sort_j[temp].d)
while(temp <= cj->count && (sort_i[i].d + (pi->h * kernel_gamma + dx_max - rshift) > sort_j[temp].d))
temp++;
max_index_i[i] = temp;
}
}
else {
/* Make sure that max index is set to first particle in cj.*/
max_index_i[ci->count - 1] = 0;
}
/* Find the rightmost particle in cell j that interacts with any particle in cell i. */
last_pj = 0;
......@@ -329,6 +333,10 @@ __attribute__((always_inline)) INLINE static void populate_max_d_no_cache(
}
}
else {
/* Make sure that max index is set to last particle in ci.*/
max_index_j[0] = ci->count - 1;
}
*init_pi = first_pi;
*init_pj = last_pj;
......@@ -577,8 +585,6 @@ void runner_dopair1_density_vec(struct runner *r, struct cell *ci,
TIMER_TIC;
//static int intCount = 0;
/* Get the cutoff shift. */
double rshift = 0.0;
for (int k = 0; k < 3; k++) rshift += shift[k] * runner_shift[sid][k];
......@@ -804,8 +810,6 @@ void runner_dopair1_density_vec(struct runner *r, struct cell *ci,
/* Form integer mask. */
doi_mask = vec_form_int_mask(v_doi_mask);
//intCount += __builtin_popcount(doi_mask);
/* If there are any interactions perform them. */
if (doi_mask)
runner_iact_nonsym_1_vec_density(
......@@ -935,8 +939,6 @@ void runner_dopair1_density_vec(struct runner *r, struct cell *ci,
/* Form integer mask. */
doj_mask = vec_form_int_mask(v_doj_mask);
//intCount += __builtin_popcount(doj_mask);
/* If there are any interactions perform them. */
if (doj_mask)
runner_iact_nonsym_1_vec_density(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment