5 ms·
How would you compare this to using python with an easy JIT like numba?
by tlmr 12y ago
How would you compare this to using python with an easy JIT like numba?
- msravi 12y agoI haven't used numba or benchmarked it, so I'm not really qualified to comment. I do however vastly prefer the MATLAB-like syntax of julia to that of python.
- Fede_V 12y agoI actually both in terms of speed, and in terms of writing code they are remarkably similar approaches. numba forces you into certain ways of writing code to achieve significant speed ups, but usually that's not too restrictive. If you are used to writing numerical python code, you'll feel write at home in Julia - especially with the amazing PyCall module.
- curiouslearn 12y agoWhenever I have tried to use Numba, I find it is slower than standard python. OTOH, Julia just works. Gives me the same performance as C.