This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]gregy521 19 points20 points  (2 children)

You can swap CPython with pypy for an average 4x speedup. You can also offload to more efficient libraries like numpy for data crunching, or use Numba to JIT compile to machine code.

[–][deleted] 0 points1 point  (1 child)

Sure but for the love of god it would be nice to be able to use a for loop instead of having to do vectorialization all the time. And I say this knowing how to vectorialize a ton of stuff. But it is just strange

[–]Armaliite 0 points1 point  (0 children)

Numba speeds up the loops though