Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 168 Bytes

Code Style.md

File metadata and controls

9 lines (6 loc) · 168 Bytes

Code Style

Numba

Vectorize

Use vectorize when returning an array. It's the fasted way.

njit

Use njit when returning a single value (float, int).