stuartarchibald
stuartarchibald
@sogoogos did you manage to find a way to reproduce this as I'm afraid I cannot? Thanks
This indeed might be a path thing. If you do (on the command line, in your virtual env with numba+icc_rt in it): ``` python -c 'from llvmlite import binding; binding.load_library_permanently("libsvml.so")'...
@sogoogos thanks, I guess the next question is... where does pip put that file and where is it in relation to something known, like python or `site-packages`?
> @esc @stuartarchibald It seems like a summary of this issue is: > > * The pip-installed wheel puts libsvml somewhere that Numba doesn't expect it > > * The...
Thanks for the report. A similar effect to that in the OP (somewhat random bimodal distribution of performance) was reproducible on Linux for the NumPy run but not for Numba,...
> I have a draft implemented that gets rid of all `pprint.py` uses in our test script and reduces compilation time by ~5%. Will open a PR Thanks for writing...
I've just checked the buildfarm run for the PR up to 1ad2fcc, it seems to be "ok" on all builds apart from `win-64` which is failing on: * `numba.tests.test_pycc.TestDistutilsSupport.test_setup_py_setuptools_nested` *...
Thanks for the report, I can reproduce under `ipython` only. I think 77b9ffcc introduced this, seems like the logic to fix it would be to just check if the list...
Thanks for the report. I think your assessment of the situation is correct. Should probably warn users this doesn't work and disable caching.
Starter patch to fix this: ```diff diff --git a/numba/cpython/builtins.py b/numba/cpython/builtins.py index 87d12a9..0936291 100644 --- a/numba/cpython/builtins.py +++ b/numba/cpython/builtins.py @@ -261,8 +261,14 @@ def round_impl_binary(context, builder, sig, args): @lower_builtin(int, types.Any) @lower_builtin(float, types.Any)...