|
|
|
|
|
by GeompMankle
817 days ago
|
|
Negative again, a series of array operations which are individually idiomatic numpy like this will run very very fast in numba as it can coalesce the ops into a single pass through memory. Numpy can't do this and has to pass through the array for each individually array operation. There's nothing wrong with straight numpy but if you want it compiled-C fast for the whole ensemble of array ops, you need a JIT. |
|
Do you have a source for this? I have not seen it in the numba docs.