8000 BUG: Filter out broken Highway platform by Mousius · Pull Request #26000 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: Filter out broken Highway platform #26000

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 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
BUG: Filter out broken Highway platform
  • Loading branch information
Mousius committed Mar 12, 2024
commit cd9937b2deb17d05cf5a879d80c3a072baf35fc8
5 changes: 4 additions & 1 deletion numpy/_core/meson.build
583B
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ if use_svml
endif
endif

use_highway = not get_option('disable-highway')
use_highway = not get_option('disable-highway') and not (
host_machine.system() == 'darwin' and
cpu_family == 'aarch64'
)
if use_highway and not fs.exists('src/highway/README.md')
error('Missing the `highway` git submodule! Run `git submodule update --init` to fix this.')
endif
Expand Down
0