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
It should be possible to parallelize the computation of the sphere-fitted curvature by parallelizing this for loop:
napari-process-points-and-surfaces/napari_process_points_and_surfaces/_quantification.py
Line 239 in a6c9113
Hints:
The text was updated successfully, but these errors were encountered:
Hi @haesleinhuepf ,
I played around with this in another context and I think joblib parallelization could do the trick. The syntax is also quick simple:
from joblib import Parallel, delayed list_of_results = Parallel(n_jobs=-1)(delayed(function_to_parallelize)(arg for arg in list_of_arguments))
will try to put it in a PR.
Sorry, something went wrong.
No branches or pull requests
It should be possible to parallelize the computation of the sphere-fitted curvature by parallelizing this for loop:
napari-process-points-and-surfaces/napari_process_points_and_surfaces/_quantification.py
Line 239 in a6c9113
Hints:
The text was updated successfully, but these errors were encountered: