Category "numba"

Weird address issue with linked list implemented by numba jitclass

I'm trying to implement an LRU cache with doubly linked list and hash map. The doubly linked list is quite simple to implement by following the official example

numba: underlying object has vanished

I am experiencing the following exception when using Numba. What does it mean, and how can it be avoided? It occurs in the middle of a convoluted function, so u

RAPIDS/NUMBA: Faster way to parallelize a for-loop on small data?

If I have data that easily fits into memory, but I need to iterate over it hundreds or thousands of times, is there a faster way? For instance, if I have 400k d

Numba Invalid use of BoundFunction of array.mean

I want to calculate the mean for the second index for each third index. @njit def mean_some_index(a): T = a.shape[2] b = np.zeros((T,T)) for t in ra

numba cuda does not produce correct result with += (gpu reduction needed?)

I am using numba cuda to calculate a function. The code is simply to add up all the values into one result, but numba cuda gives me a different result from nu

How to use Numba extension in setup.py?

I try to use the Numba for some fast calculations. I got the following issue while creating a package that use a Numba extension. I did similar things as sugges

Numba support for cuda cooperative block synchronization?? Python numba cuda grid sync

Numba Cuda has syncthreads() to sync all thread within a block. How can I sync all blocks in a grid without exiting the current kernel? In C-Cuda there's a coo