-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
ENH: Parallelization support for pairwise correlation #61737
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
ENH: Parallelization support for pairwise correlation #61737
Conversation
Looks like webAssembly/emscripten environments don't have OpenMP support. To get around this Im thinking of modifying the menson.build and setup.py files to conditionally include OpenMP compiler and linker flags only when not building for WebAssembly/Emscripten. (WIP) |
I'm positive on adding parallelization as is being done here, but negative without the proper framework for use across pandas. See #43313. |
Thanks for the PR, but as mentioned the project needs to coordinate & decide a common pattern for parallelism before implementing it in any specific method yet, so closing as that discussion needs resolution first |
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.Used cython.parallel to parallelize the nancorr function.