Skip to content

Commit

Permalink
Make: Drop SVE from Windows PyPi builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Oct 13, 2024
1 parent 950f33d commit 5a61fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def windows_settings() -> Tuple[List[str], List[str], List[Tuple[str]]]:
macros_args = [
("SZ_USE_X86_AVX512", "1" if is_64bit_x86() else "0"),
("SZ_USE_X86_AVX2", "1" if is_64bit_x86() else "0"),
("SZ_USE_ARM_SVE", "1" if is_64bit_arm() else "0"),
("SZ_USE_ARM_SVE", "0"),
("SZ_USE_ARM_NEON", "1" if is_64bit_arm() else "0"),
("SZ_DETECT_BIG_ENDIAN", "1" if is_big_endian() else "0"),
]
Expand Down

0 comments on commit 5a61fdf

Please sign in to comment.