Hi, I am pretty new to kivy and I am trying to build an App which involves solving large linear systems with sparse matrix. At the moment SciPy does not work on smartphone with kivy, so I wrote my own pure-python-solver. It is of course much slower than SciPy, I managed to accelerate it with Numba. Does anyone have experience using Numba with kivy?
If Numba doesn't work, I think I can also use Cython, is it complicated to use Cython with kivy?
Thank you in advance.