|
|
|
|
|
by superbatfish
3122 days ago
|
|
Yes, numba is great; I've had a good experience with it for some functions. Some problems aren't suited well for it though, especially those that involve Python dictionaries or sets. For those problems, switching to C++ results in MUCH faster code (std::unordered_map is way faster than Python's dict, especially for small elements). |
|