News

Here’s how to use Cython to accelerate array iterations in NumPy ... for x in range(x_max): for y in range(y_max): view2d[x,y] = something() # pure-Python mode: import cython @cython.boundscheck ...