python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why is my Numba JIT function recognized as an array?
So I am trying to speed up a code, and while it works for most functions, a few do not work. I specify the function's signature, and it doesn't work. If I write only nb.njit, it works, but there is no...
Bilal BOTTÉ
Votes: 0
Answers: 1
C# AggressiveInlining behaviour
I know what Inlining is supposed to mean from the JitAsm perspective. What I'm trying to determine is the following scenario
The following assumptions SHOULD BE CONSIDERED:
This code is a hotpath (it...
Damian
Votes: 0
Answers: 0
JAX(XLA) vs Numba(LLVM) Reduction
Is it possible to make CPU only reductions with JAX comparable to Numba in terms of computation time?
The compilers come straight from conda:
$ conda install -c conda-forge numba jax
Here is a 1-d Nu...
DavidJ
Votes: 0
Answers: 1
Handle varying shapes in jax numpy arrays (jit compatible)
Important note: I need everything to be jit compatible here, otherwise my problem is trivial :)
I have a jax numpy array such as:
a = jnp.array([1,5,3,4,5,6,7,2,9])
First I filter it considering a va...

Valentin Macé
Votes: 0
Answers: 1