Siu Kwan Lam

Results 276 comments of Siu Kwan Lam

rerunning to refresh the logs

From OOB discussion, the new TBB *should* be ABI compatibility. Need to confirm on ABI compatibility.

I think i have a fix to this https://github.com/numba/numba/pull/8339

The slow pickler is actually referring to `pickle._Pickler` which is the pure-python Pickler but is slightly more extensible before Py3.8 than the fast pickler (`pickle.Pickler`; the default pickler). In Numba,...

I don't think we can fix it that quickly. We should open an issue about it.

I am seeing a similar error and downgrading to 2.1.10 works. ```bash (pycudf_notebook_py35) appuser@e51ca28d64eb:~/pygdf$ conda develop . Traceback (most recent call last): File "/home/appuser/Miniconda3/bin/conda-develop", line 6, in sys.exit(conda_build.cli.main_develop.main()) File "/home/appuser/Miniconda3/lib/python3.6/site-packages/conda_build/cli/main_develop.py",...

@brendancol, can you point me to the old RTree implementation, or any current code that needs to be numba-ified?

Numba has support for a typed version of `list`, `dict` and `heapq` now. It would make things easier.

Yes, we would like to enable typing annotations. It will likely help users catch certain kind of mistakes early. Contributions are welcomed.

The error message: > `TypeError: can only call gep() on pointer constants, not '[12 x i8]'` is correct. In LLVM, `[12 x i8]` is not a pointer type and GEP...