-
Notifications
You must be signed in to change notification settings - Fork 6
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
Invalid loop extent reduction #97
Labels
Comments
miklos1
added a commit
to firedrakeproject/tsfc
that referenced
this issue
Oct 21, 2016
@FabioLuporini: Just wanted to document this, so we won't forget this problem. Not urgent to fix it, since it is not triggered per firedrakeproject/tsfc@1d7ce21. |
OK, thanks. |
Merged
I prefer to keep this open for reference |
connorjward
pushed a commit
to firedrakeproject/firedrake
that referenced
this issue
Dec 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
COFFEE did the following transformation:
This reduces the extent of the
k0
loop from 3 to 2 fort8[ip_1][k0][k1] = t2[k0] * t6[ip_1][k1];
. This would be legal, hadt8
been previously initialised to zero, but it wasn't. The loop that was reduced was supposed to initialise it, thus the reduced loop leaving entries uninitialised, and causing all kind of horrible symptoms.The text was updated successfully, but these errors were encountered: