Skip to content Skip to sidebar Skip to footer
Showing posts with the label Numba

Is There Any Good Way To Optimize The Speed Of This Python Code?

I have a following piece of code, which basically evaluates some numerical expression, and use it t… Read more Is There Any Good Way To Optimize The Speed Of This Python Code?

Numba Support For Big Integers?

I have a factorial lookup table that contains the first 30 integer factorials. This table is used i… Read more Numba Support For Big Integers?

Find Numpy.int_ In Array Of Int_s Using Numba

I am using numba (0.10.2-5-gda3e2bb-dirty) to speed up my code. Now I am trying the following: fro… Read more Find Numpy.int_ In Array Of Int_s Using Numba

2d Array To Represent A Huge Python Dict, Coordinate Like Solution To Save Memory

I try to update a dict_with_tuples_key with the data from an array: myarray = np.array([[0, 0], # … Read more 2d Array To Represent A Huge Python Dict, Coordinate Like Solution To Save Memory

Python Numba / Llvmlite On Debian 8 - I Can't Build Llvmlite

Im trying to install numba on a Debian 8 system as described here: http://llvmlite.pydata.org/en/la… Read more Python Numba / Llvmlite On Debian 8 - I Can't Build Llvmlite

How Call A `@guvectorize` Inside A `@guvectorize` In Numba?

I'm trying to call a @guvectorize inside a @guvectorize but I have an error saying : Untyped gl… Read more How Call A `@guvectorize` Inside A `@guvectorize` In Numba?