-
On the current master, the following code compiles and runs:
```python
import cupy as cp
from cupyx import jit
@jit.rawkernel()
def f(b):
laneId = jit.threadIdx.x & 0x1f
if laneId == …
-
git clone https://github.com/neonbjb/tortoise-tts.git
cd tortoise-tts
python -m pip install -r ./requirements.txt
python setup.py install
I PUT THIS AND GET:
I THINK PIP SAYS:
1479/1479
…
-
I like status bars. Even if numba accelerates my code and parallelizes it for me, I want to know how much longer I have to wait.
In python this can be done with the multi threading library with som…
-
This meta issue lists the concrete tasks needed to implement half-precision floating type. (#4395).
llvmlite:
- [x] add `half` type
numba:
- [ ] add `float16` type and conversion to/from `num…
-
Just to have this documented some where.
Currently we're testing simulation a city of 600.000 inhabitants from 6 to 23 o'clock that all take on average ~3.73 trips in that time period. Of those ~2.…
-
Hi,
I'm following up on #3907, regarding the deprecation of object mode. I almost never use object mode, but I could imagine a case like this:
```python
import pandas as pd
import numba as nb…
-
- Use a profiling tool (e.g. built-in in Pycharm) to investigate on the time consumption for the different toolbox parts for the provided examples or a dummy controller input
- Identify possible pote…
-
I want to find the most efficient way to calculate the moving average. Three approach presented:
```
def sma1(x,d):
n = np.ones(d)
weights = n/d
ret = np.convolve(weights,x)[d-1:-d+1]…
-
Numba 0.52.0, 64-bit Python 3.7.3 on Windows
Discourse discussion is [here](https://numba.discourse.group/t/how-do-i-nest-dict-of-jitclass/434)
The code below doesn't work, but seems like it ought…
-
The following snippet highlights differences regarding loop unrolling between `numba` and `numba_dpex`. Regular `numba` [will try to unroll loops](https://numba.pydata.org/numba-doc/latest/user/faq.ht…