Siu Kwan Lam

Results 276 comments of Siu Kwan Lam

(CI failed due to conda timeout. i've restarted failing builds)

Restarted buildfarm to refresh the test failures status: `numba_smoketest_cpu_yaml_160`

Developer Note: This PR depends on merging LLVM14 changes.

From OOB discussion, the OSX build failure is depending on https://github.com/conda/conda-build/issues/4787 to successfully build compiler-rt

@esc, please consider this and related PR for inclusion of the upcoming llvmlite release.

Numba needs to guard against the use of Array type with layout other than `'A'` in ufunc and gufunc. NumPy is assuming strided array.

I am unfamiliar with ZLUDA. Is there an example that does what @adworacz described? If that is the case, is this just a documentation change to tell users to try...

Developer Note: - `clip` is using `ndindex` which is assuming C ordered. It should use `nditer`. https://github.com/numba/numba/blob/fed996d3177b64fabf62a526fd329851819dc2da/numba/np/arrayobj.py#L2295 - `astype` is relying on `array.copy` which is also not considering memory layout....

Could this be the overhead cost for parfor region? I'm seeing the speed difference just by using the numpy-parfor-pass e.g. ```python parallel = dict( comprehension = False, reduction = False,...