Graham Markall
Graham Markall
> I'm not sure you could use/rename the `dtor_info` field as it carries owners and function pointers I could have missed something here - where do you see `dtor_info` carrying...
> I only did a quick check, but I saw `NRT_meminfo_new_from_pyobject` place `ownerobj` in `dtor_info` which `NRT_MemInfo_parent` then uses, and `NRT_MemInfo_new_varsize_dtor` places `dtor_function` in `dtor_info`. Thanks - I'd failed to...
Thanks for the report, I can reproduce the issue.
The comment around the assertion states: > There must always be an initial assignment. > If this changes we may need to support this branch. and refers to the following...
Actually, maybe the most reasonable fix is simply this anyway: ```diff diff --git a/numba/core/interpreter.py b/numba/core/interpreter.py index 95a91ce22..3d981eb5a 100644 --- a/numba/core/interpreter.py +++ b/numba/core/interpreter.py @@ -374,11 +374,15 @@ def _call_function_ex_replace_args_large( # tuple....
Potential fix in #10282.
I'll look to address this in #10275 too.
Thanks for the PR @modiking - I was hoping to provide some timely feedback on your PR I'm out on PTO for the rest of the week - I'll follow...
Hi @modiking - I'm looking at this a bit today - I have a couple of clarifying questions: - Do you have a corresponding Numba fork that you're maintaining? -...
@modiking Thanks for your efforts so far here, and apologies for the delay in getting back to looking at this. I appreciate the time and effort you've taken to fully...