Graham Markall

Results 776 comments of Graham Markall

@ziofil I'd be surprised if the message were related to the crash - I'd suggest starting a thread on https://numba.discourse.group describing your problem, and hopefully you can get some more...

> What do you think @gmarkall ? That sounds good to me. I'll update this PR to do as suggested.

Note to self: reproducing the fail may be possible on an x86 box with many cores.

If LLVM came from homebrew, then it probably doesn't have this patch applied: https://github.com/numba/llvmlite/blob/52970defcdd82c68a420e1dc182a814c7c4b16e3/conda-recipes/llvm_11_consecutive_registers.patch - this seems to cause this kind of failure. There are more details in https://github.com/gmarkall/cf-llvmlite-0.39-issue-repro

@stuartarchibald Thanks for the review - typo fix committed. gpuci run tests

Main is now merged, so hopefully that will fix the recipes.

`main` has been merged in again, since #8356 was merged - hopefully this is now good for the CPU buildfarm @stuartarchibald / @esc? gpuci run tests

Thanks for the report - I can reproduce the compilation failure.

A smaller reproducer: ```python from numba import njit, literal_unroll @njit('(Tuple((int64, float64)),)') def f2(t): for t_i in literal_unroll(t): pass while True: x = 0 ```