auderson
auderson
Hi: I have some numba functions that will release GIL. It'll be so helpful if pandarallel supports a threading backend. Currently I'm using joblib's threading backend, but it doesn't look...
- [x] I have tried using the latest released version of Numba (most recent is visible in the change log (https://github.com/numba/numba/blob/main/CHANGE_LOG). - [x] I have included a self contained code...
I notice that `CC.distutils_extension` monkey patches `distutils.command.build_ext.build_ext` with a modified subclass, this can lead to a bug when using with `versioneer`. In versioneer.py: ```python if "build_ext" in cmds: _build_ext =...
In Cpython, dict key lookup will first check `__hash__` then `__eq__`: https://github.com/python/cpython/blob/main/Objects/dictobject.c This causes deviation from python dicts and numba dicts, if nan is used as dict keys. In certain...
```python from joblib import Parallel, delayed @delayed def f(): pass Parallel(n_jobs=10.0)(f() for i in range(10)) ``` ``` Empty Traceback (most recent call last) File ~/mambaforge/envs/py39_2/lib/python3.9/site-packages/joblib/parallel.py:1423, in Parallel.dispatch_one_batch(self, iterator) 1422 try:...
I'm trying to visualize a relatively big dataset (634785 x 282) with your tool, but the plot just won't show up. I can see the python console is running from...
The "VizTracer Report" button will not work if user is using remote jupyter, because the code is running on the server side. However user can still open the page manully...
### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of...
- [ ] closes #58712 - [ ] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) if fixing a bug or adding a new feature - [x] All [code checks passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#pre-commit). - [x] Added...