-
Notifications
You must be signed in to change notification settings - Fork 49
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
GridTools Stage Extents #136
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…o gt_stage_extents
This was referenced Aug 7, 2020
Merged
Finally, I found the root cause of the issue, see #143. Did this PR fix the issue for all GT backends (especially GPU). There should be a data race even with this PR. The stage_with_extent probably "fixed" the dependency analysis, but not the race condition. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR modifies the GridTools backends to use the
make_stage_with_extent
method to define stages rather thanmake_stage
as in the Dawn backends. For example, theqx_edge_west
stencil in the FV3 dycore,the
qx0
temporary is introduced to prevent a nonzero horizontal extents static assertion error. The generated code withmake_stage
compiles but produces incorrect data. The proposed change generates the following code which produces correct results.This change is required because the GridTools dependence analysis cannot always compute the necessary extents when temporaries are reused. The is documented in issue #920 in the GridTools repository.