We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from scikit-learn/scikit-learn#8186 (comment):
Snippet reproducing the issue:
from joblib import Parallel, delayed def func(): return 42 inputs = range(1000) %timeit Parallel(n_jobs=1)(delayed(func)() for _ in inputs)
The speed regression is way worse on Python 2:
Timings:
The text was updated successfully, but these errors were encountered:
Profiling, the culprit is the timeout support and in particular this line.
Sorry, something went wrong.
lesteve
No branches or pull requests
from scikit-learn/scikit-learn#8186 (comment):
Snippet reproducing the issue:
The speed regression is way worse on Python 2:
Timings:
The text was updated successfully, but these errors were encountered: