ketch / rock-solid-code-demo

A demo of best practices for reliable scientific code.
BSD 2-Clause "Simplified" License
1 stars 4 forks source link

LU() is very slow #1

Open ketch opened 9 years ago

ketch commented 9 years ago

The code in factor.LU() is slow for large matrices because it uses Python loops. It could be sped up by vectorization. It might also be worthwhile to use numba or Cython to speed it up.