-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
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
Parallel Computation of Similarity Matrices #169
Comments
I guess it would be fairly easy to do with joblib yes, especially since all the similarity metrics are computed with some sort of map / reduce process. I assume though that you're asking because Spearman computation takes a lot of time (#168 )? |
I didn't ask this for the Spearman computation. Was just asking in general. Would be a very nice feature to have. |
Sure, I agree! |
Can I take this up in my upcoming vacation? |
Absolutely |
Hi gautamramk, |
I shall do it, I am getting back to this issue |
Hi,
I was wondering if it would be feasible to make the computation of similarity matrices run in parallel. This would help speed up the process, utilizing multiple cores for computation.
Reference link for Parallel Programming with CPython:
http://cython.readthedocs.io/en/latest/src/userguide/parallelism.html
The text was updated successfully, but these errors were encountered: