-
Is there any plan to incorporate GPU-based calculations to massively speed-up the simulation? This can be done for conflict-detection-resolution, propagating aircraft dynamics forward, or to allow for…
-
Following on from some recent OOB discussions, this is a meta-issue to track ways in which the Numba and NumPy projects could cooperate over common interaction points. The items presented herein are w…
-
I've hacked together a quick prototype which demonstrates how you could use numba [cfunc](https://numba.pydata.org/numba-doc/latest/user/cfunc.html) to process data.
numba is a jit to native compil…
-
Having code like this:
import numba
numba.register_module(mymodule)
@numba.jit(nopython=1)
def f():
return mymodule.lib.fun()`
doesn't work. when the similar
impo…
-
Hi,
this snippet gets called several times in my main Numba processing function:
```
@nb.jit(boundscheck=True, debug=True, forceobj=True)
def printing4Numba(runner, datetimeInt, par0, par1, pa…
-
### Your current environment
For setup, I am using the version 0.5 and the vllm_openai target as part of the Dockerfile with these arguments:
```
environment:
- NCCL_SOCKET_IFNAME=eth0
…
-
#calc_pi.py
import hpat
import numpy as np
import time
@hpat.jit
def calc_pi(n):
t1 = time.time()
x = 2 * np.random.ranf(n) - 1
y = 2 * np.random.ranf(n) - 1
pi = 4 * np.s…
-
## Reporting a bug
- [x] I have tried using the latest released version (53.1/97fe221b3704bd17567b57ea47f4fc6604476cf9) of Numba (most recent is
visible in the change log (https://github.…
-
(ssd) root@logic:~/SA-SSD# python tools/create_data.py
Traceback (most recent call last):
File "tools/create_data.py", line 8, in
from mmdet.core.bbox3d.geometry import remove_outside_points…
-
It's better to have a performance docs focusing on CuPy, like as we did for [Chainer Performance Best Practices](https://docs.chainer.org/en/latest/performance.html).
* Rewriting for-loop to "numpy…