-
Notifications
You must be signed in to change notification settings - Fork 0
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
Use new itir.Program everywhere #596
base: main
Are you sure you want to change the base?
Conversation
cscs-ci run default |
cscs-ci run default |
Mandatory Tests Please make sure you run these tests via comment before you merge!
Optional Tests To run benchmarks you can use:
To run tests and benchmarks with the DaCe backend you can use:
In case your change might affect downstream icon-exclaim, please consider running
For more detailed information please look at CI in the EXCLAIM universe. |
cscs-ci run default |
@@ -445,8 +446,8 @@ def _get_offset_providers(self, grid: icon_grid.IconGrid) -> dict[str, gtx.Field | |||
horizontal_offsets = { | |||
k: v | |||
for k, v in grid.offset_providers.items() | |||
if isinstance(v, gtx.NeighborTableOffsetProvider) | |||
and v.origin_axis.kind == gtx.DimensionKind.HORIZONTAL | |||
if isinstance(v, gtx.Connectivity) |
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.
We should be able to remove this workaround with PR 1746...
Blocked by
GridTools/gt4py#1738,GridTools/gt4py#1648