-
Notifications
You must be signed in to change notification settings - Fork 133
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
Updated MultistateInlining #1980
Updated MultistateInlining #1980
Conversation
This [issue](spcl/dace#1959) leaded to some problem, especially in ICON4Py stencil `39_to_40`. However, through an [update](GridTools#1915) in GT4Py this leads to now to other problems (`ConstantPropagation` involving AcccessNodes) in `19_to_20`. The underlying issue in DaCe was solved in [PR#1980](spcl/dace#1980) and this PR now deactivate the workaround. Only merge if the DaCe dependency in GT4Py was updated to include that fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks really nice and useful! Good idea with the three states! Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks! Should be orthogonal to my fixes too mostly
Weird failing test - can that be reproduced locally? It seems like a possible missing reshape / view when inlining, but seems a bit strange that only one test fails then. |
This [issue](spcl/dace#1959) leaded to some problem, especially in ICON4Py stencil `39_to_40`. However, through an [update](#1915) in GT4Py this leads to now to other problems (`ConstantPropagation` involving AcccessNodes) in `19_to_20`. The underlying issue in DaCe was solved in [PR#1980](spcl/dace#1980) and this PR now deactivate the workaround. It also updates the version of DaCe.
This PR addresses issue#1959, the issue was about that the inlining transformation destroys the SSA invariant we maintain inside GT4Py.
This invariant states that in every code path there is exactly one AccessNode with that is used to write to a data container.
The PR solves this issue by modifying how the nested SDFG is isolated, before this was done in two steps and is now performed in a single step.
The main idea is that the number of writes is preserved.