You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ffts_real_nd.c:96 gives: plan->transform(plan, din + (j * Ms0), buf + (j * (Ms0 / 2 + 1)));
buf here is uint64_t* and is 16 byte aligned. This means that in passing buf + x to a function that expects 16 byte alignment, we must have x%2 == 0 which is not the case resulting in segfaults on my machine whenever j is odd.
The text was updated successfully, but these errors were encountered:
ffts_real_nd.c:96 gives: plan->transform(plan, din + (j * Ms0), buf + (j * (Ms0 / 2 + 1)));
buf here is uint64_t* and is 16 byte aligned. This means that in passing buf + x to a function that expects 16 byte alignment, we must have x%2 == 0 which is not the case resulting in segfaults on my machine whenever j is odd.
The text was updated successfully, but these errors were encountered: