You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
numba always has been kind of a blocker when it comes to adopting new Python versions. At the moment (2023-04-16), Python 3.11 is still not supported.
An option could be to rewrite some functions in Rust, then include them via pyo3 / maturin. That would be a general solution to handle functions that suffer from poor performance in vanilla Python.
The downside is, that this
adds other dependencies
probably a bit slow than the jit-compiled version
additional coding to do
The text was updated successfully, but these errors were encountered:
numba
always has been kind of a blocker when it comes to adopting new Python versions. At the moment (2023-04-16), Python 3.11 is still not supported.An option could be to rewrite some functions in Rust, then include them via pyo3 / maturin. That would be a general solution to handle functions that suffer from poor performance in vanilla Python.
The downside is, that this
The text was updated successfully, but these errors were encountered: