8000 ENH: Use openmp on x86-simd-sort to speed up np.sort and np.argsort by r-devulap · Pull Request #28619 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: Use openmp on x86-simd-sort to speed up np.sort and np.argsort #28619

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

Merged
merged 10 commits into from
May 14, 2025
Prev Previous commit
Initialize omp to empty variable
  • Loading branch information
Raghuveer Devulapalli committed May 1, 2025
commit 6eff29e03c75d3fc31a9325780acd901c8b3651d
1 change: 1 addition & 0 deletions numpy/_core/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ endif
use_openmp = get_option('enable-openmp') and not get_option('disable-threading')

# Setup openmp flags for x86-simd-sort:
omp = []
omp_dep = []
if use_intel_sort and use_openmp
omp = dependency('openmp', required : true)
Expand Down
Loading
0