Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forward 2D real transforms are broken #81

Open
pchilds opened this issue Feb 14, 2020 · 1 comment
Open

forward 2D real transforms are broken #81

pchilds opened this issue Feb 14, 2020 · 1 comment

Comments

@pchilds
Copy link

pchilds commented Feb 14, 2020

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.

@vdgs
Copy link

vdgs commented Apr 19, 2021

how to fix it ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants