Graham Markall
Graham Markall
> Are the zlib and zstd dependencies a problem? Yes, for wheels. Different recipe versions may be needed for wheels and conda packages.
Thanks, will give it a try!
Thanks - the warning results because Numba considers `x[:, None]` non-contiguous. I'm trying a fix for this in #10087 - I added a bit of logic to handle the addition...
Seems the PR didn't cause any issues, so I'll represent it here as a "starter patch": ```diff diff --git a/numba/core/typing/arraydecl.py b/numba/core/typing/arraydecl.py index 7ef5e493c..58d476fb9 100644 --- a/numba/core/typing/arraydecl.py +++ b/numba/core/typing/arraydecl.py @@ -155,6...
I think it's just not implemented, things tend to be implemented on an as-needed basis. If `getNamedMetadata()` were implemented, what methods of the resulting `NamedMDNode` would you want to use...
We need to finish off #986 / #1072 to resolve this, but I didn't get chance to look at it for a while.
cc @milesial
Thanks for the report... I'm sure I once saw a workaround or another way of doing this at some point, but it's escaping me for now... will update this if...
I got a little further with this with: - Putting the instance type of `A` in a global - Using a workaround for picking jitclasses from https://github.com/numba/numba/issues/9286#issuecomment-1869609946 which looks like:...
Following discussion in the triage meeting - I think this is a feature request to make this work properly, but there are no plans to improve the experimental implementation of...