-
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
{P} Frontend enhance feedback #49
Comments
Below we list issues encountered and their tickets if those are down |
Extra argument on stencils calls can be taken for E.g. @gtscript.stencil(backend="dace:cpu")
def absolute_K_index__field__dace(
in_field: Field[IJK, np.float64],
index_field: Field[IJK, np.int32],
out_field: Field[IJK, np.float64],
index: int,
):
with computation(PARALLEL), interval(...):
out_field = in_field.at(K=index_field) called with absolute_K_index__field__dace(in_arr, idx_arr, out_arr, index, rel_index) Will override |
Un-useful comment when type mismatch on BinOp (see Error is "Type mismatch in .." but doesn't give the line or the source |
Using a gt4py function outside of a stencil does not provide useful error, and in some cases does not even error (i.e. |
The frontend of NDSL (
gt4py.cartesian
for stencils andDaCe
parsing for orchestration) can always be enhanced when erroring out for a better user experience. This tasks collects the ongoing less than ideal or outright missing feedback.The text was updated successfully, but these errors were encountered: