Skip to content

Commit

Permalink
Make: Disable SimSIMD on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Oct 10, 2024
1 parent fb201aa commit 04eb837
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ def get_bool_env_w_name(name: str, preference: bool) -> tuple:
pass


prefer_simsimd: bool = True
# ? Is there a way we can bring back SimSIMD on Windows?
# ? Using `ctypes.CDLL(simsimd.__file__)` breaks the CI
# ? with "Windows fatal exception: access violation".
prefer_simsimd: bool = not is_windows
prefer_fp16lib: bool = True
prefer_openmp: bool = is_linux and is_gcc

Expand Down

0 comments on commit 04eb837

Please sign in to comment.