I have written a cython function using numpy.array to execute some calculation on a big array for example the array has 24000x1500 size. Then I got MemoryError.
I am wondeing what is the ultimate size of a two-dimensional array with float64 components in python?
Is this error occurring due to the size of my array?
What should I do to avoid this error?