Skip to main content

A library for efficient similarity search and clustering of dense vectors.

Project description

faiss-wheels

Build PyPI

faiss python wheel packages.

Overview

This repository provides scripts to build wheel packages for the faiss library.

  • Builds CPU-only version with cibuildwheel.
  • Bundles OpenBLAS in Linux/Windows
  • Uses Accelerate framework in macOS

There is also a source package to customize the build process.

Note GPU binary package is discontinued as of 1.7.3 release. Build a source package to support GPU features.

Install

Install the CPU-only binary package by:

pip install faiss-cpu

Note that the package name is faiss-cpu.

Supporting GPU or customized build configuration

The PyPI binary package does not support GPU. To support GPU methods or use faiss with different build configuration, build a source package. For building the source package, swig 3.0.12 or later needs to be available. Also, there should be all the required prerequisites for building faiss itself, such as nvcc and CUDA toolkit.

Building faiss

The source package assumes faiss and OpenBLAS are already built and installed in the system. If not done so elsewhere, build and install the faiss library first. The following example builds and installs faiss with GPU support and avx512 instruction set.

git clone https://github.com/facebookresearch/faiss.git
cd faiss
cmake . -B build -DFAISS_ENABLE_GPU=ON -DFAISS_ENABLE_PYTHON=OFF -DFAISS_OPT_LEVEL=avx512
cmake --build build --config Release -j
cmake --install build install
cd ..

See the official faiss installation instruction for more on how to build and install faiss.

Building and installing a source package

Once faiss is built and installed, build the source package. The following builds and installs the faiss-cpu source package with GPU and AVX512.

export FAISS_ENABLE_GPU=ON FAISS_OPT_LEVEL=avx512
pip install --no-binary :all: faiss-cpu

There are a few environment variables that specifies build-time options.

  • FAISS_INSTALL_PREFIX: Specifies the install location of faiss library, default to /usr/local.
  • FAISS_OPT_LEVEL: Faiss SIMD optimization, one of generic, avx2, avx512. Note that AVX option is only available in x86_64 arch.
  • FAISS_ENABLE_GPU: Setting this variable to ON builds GPU wrappers. Set this variable if faiss is built with GPU support.
  • CUDA_HOME: Specifies CUDA install location for building GPU wrappers, default to /usr/local/cuda.

Note that you can build a custom wheel package without installing it. The resulting package can be installed in the other python environment as long as the ABI is the same. Otherwise, use auditwheel or similar tools to package the binary dependency after building a wheel.

export FAISS_ENABLE_GPU=ON FAISS_OPT_LEVEL=avx512
pip wheel --no-binary :all: faiss-cpu

Note Currently, the source package only supports the OpenBLAS backend; other BLAS implementation is not supported.

Development

This repository is intended to support PyPI distribution for the official faiss library. The repository contains the CI workflow based on cibuildwheel. Feel free to make a pull request to fix packaging problems.

Other relevant resources:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

faiss_cpu-1.12.0.tar.gz (69.3 kB view details)

Uploaded Source

Built Distributions

faiss_cpu-1.12.0-cp314-cp314t-win_arm64.whl (8.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

faiss_cpu-1.12.0-cp314-cp314t-win_amd64.whl (18.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl (23.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp314-cp314t-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

faiss_cpu-1.12.0-cp314-cp314t-macosx_13_0_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

faiss_cpu-1.12.0-cp314-cp314-win_arm64.whl (8.3 MB view details)

Uploaded CPython 3.14Windows ARM64

faiss_cpu-1.12.0-cp314-cp314-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.14Windows x86-64

faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp314-cp314-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

faiss_cpu-1.12.0-cp314-cp314-macosx_13_0_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

faiss_cpu-1.12.0-cp313-cp313-win_arm64.whl (8.0 MB view details)

Uploaded CPython 3.13Windows ARM64

faiss_cpu-1.12.0-cp313-cp313-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.13Windows x86-64

faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp313-cp313-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

faiss_cpu-1.12.0-cp313-cp313-macosx_13_0_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

faiss_cpu-1.12.0-cp312-cp312-win_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12Windows ARM64

faiss_cpu-1.12.0-cp312-cp312-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.12Windows x86-64

faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp312-cp312-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

faiss_cpu-1.12.0-cp312-cp312-macosx_13_0_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

faiss_cpu-1.12.0-cp311-cp311-win_arm64.whl (8.0 MB view details)

Uploaded CPython 3.11Windows ARM64

faiss_cpu-1.12.0-cp311-cp311-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.11Windows x86-64

faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp311-cp311-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

faiss_cpu-1.12.0-cp311-cp311-macosx_13_0_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

faiss_cpu-1.12.0-cp310-cp310-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.10Windows x86-64

faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp310-cp310-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

faiss_cpu-1.12.0-cp310-cp310-macosx_13_0_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

faiss_cpu-1.12.0-cp39-cp39-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.9Windows x86-64

faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

faiss_cpu-1.12.0-cp39-cp39-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

faiss_cpu-1.12.0-cp39-cp39-macosx_13_0_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file faiss_cpu-1.12.0.tar.gz.

File metadata

  • Download URL: faiss_cpu-1.12.0.tar.gz
  • Upload date:
  • Size: 69.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0.tar.gz
Algorithm Hash digest
SHA256 2f87cbcd603f3ed464ebceb857971fdebc318de938566c9ae2b82beda8e953c0
MD5 4af2e7692502dc2a65275e03f302eb95
BLAKE2b-256 7d80bb75a7ed6e824dea452a24d3434a72ed799324a688b10b047d441d270185

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0.tar.gz:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 58b23456db725ee1bd605a6135d2ef55b2ac3e0b6fe873fd99a909e8ef4bd0ff
MD5 a9ab39d84c5d7d86b22d4eca5aeb1380
BLAKE2b-256 a3a2b546e9a20ba157eb2fbe141289f1752f157ee6d932899f4853df4ded6d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-win_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 18.8 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8b3239cc371df6826ac43c62ac04eec7cc497bedb43f681fcd8ea494f520ddbb
MD5 1a37f2ecf52d0c415e46f4210259de8b
BLAKE2b-256 30aa99b8402a4dac678794f13f8f4f29d666c2ef0a91594418147f47034ebc81

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f3e0a14e4edec6a3959a9f51afccb89e863138f184ff2cc24c13f9ad788740b
MD5 17b0ddd3e61b085ded61be6af4b9f6e5
BLAKE2b-256 a84a2c2d615078c9d816a836fb893aaef551ad152f2eb00bc258698273c240c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84a50d7a2f711f79cc8b65aa28956dba6435e47b71a38b2daea44c94c9b8e458
MD5 7e2060fd1ef0bc78898f5263cdaf12a4
BLAKE2b-256 62a19c16eca0b8f8b13c32c47a5e4ff7a4bc0ca3e7d263140312088811230871

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7285c71c8f5e9c58b55175f5f74c78c518c52c421a88a430263f34e3e31f719c
MD5 b502e6fa133eafc21ff8eebb8f6e96b2
BLAKE2b-256 a3a816ad0c6a966e93d04bfd5248d2be1d8b5849842b0e2611c5ecd26fcaf036

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 754eef89cdf2b35643df6b0923a5a098bdfecf63b5f4bd86c385042ee511b287
MD5 f4037fc91025765ae92582c374945ffd
BLAKE2b-256 bc2fb1a2a03dd3cce22ff9fc434aa3c7390125087260c1d1349311da36eaa432

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 82eb5515ce72be9a43f4cf74447a0d090e014231981df91aff7251204b506fbf
MD5 a5a5929a140ac6b6e2ca9aa6fdf17570
BLAKE2b-256 f4dfb3d79098860b67b126da351788c04ac243c29718dadc4a678a6f5e7209c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 110b21b7bb4c93c4f1a5eb2ffb8ef99dcdb4725f8ab2e5cd161324e4d981f204
MD5 1f51b7367a48fa6be2da35997164ef6a
BLAKE2b-256 1c9a8ae5bbeabe70eb673c37fc7c77e2e476746331afb6654b2df97d8b6d380d

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314t-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7ac1c8b53609b5c722ab60f1749260a7cb3c72fdfb720a0e3033067e73591da5
MD5 204f6156a209399a671eea3abac152e3
BLAKE2b-256 771142e41ddebde4dfe77e36e92d0110b4f733c8640883abffde54f802482deb

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-win_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 11670337f9f5ee9ff3490e30683eea80add060c300cf6f6cb0e8faf3155fd20e
MD5 029a97710f3ea63786f9c2d870707b8a
BLAKE2b-256 eeb8b707ca4d88af472509a053c39d3cced53efd19d096b8dff2fadc18c4b82d

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98279f1b4876ef9902695a329b81a99002782ab6e26def472022009df6f1ac68
MD5 b36445193891e2c9731bafcd2100c207
BLAKE2b-256 ce2fd97792211a9bd84b8d6b1dcaa1dcd69ac11e026c6ef19c641b6a87e31025

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b80e5965f001822cc99ec65c715169af1b70bdae72eccd573520a2dec485b3ee
MD5 1b641d941e6753e9343df00e915f5b9e
BLAKE2b-256 ded23483e92a02f30e2d8491a256f470f54b7f5483266dfe09126d28741d31ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcc6587dee21e17430fb49ddc5200625d6f5e1de2bdf436f14827bad4ca78d19
MD5 d2415bd39923284866a20252880d2420
BLAKE2b-256 cd2b1c1fea423d3f550f44c5ec3f14d8400919b49c285c3bd146687c63e40186

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 693d0bf16f79e8d16a1baaeda459f3375f37da0354e97dc032806b48a2a54151
MD5 ecb8d9574c7acada2dead2087640796f
BLAKE2b-256 7b1de18023e1f43a18ec593adcd69d356f1fa94bde20344e38334d5985e5c5cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 220b5bb5439c64e417b35f9ade4c7dc3bf7df683d6123901ba84d6d764ecd486
MD5 16148e310004e7bfb00ffad2d4ccf20f
BLAKE2b-256 0823bac2859490096608c9d527f3041b44c2e43f8df0d4aadd53a4cc5ce678ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ff7db774968210d08cd0331287f3f66a6ffef955a7aa9a7fcd3eb4432a4ce5f5
MD5 8df7f9931b0848cbece9b006e4e611c8
BLAKE2b-256 123501a4a7c179d67bee0d8a027b95c3eae19cb354ae69ef2bc50ac3b93bc853

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0b5fac98a350774a98b904f7a7c6689eb5cf0a593d63c552e705a80c55636d15
MD5 dd6631e33287d48bc2cfee8ac3a3bd74
BLAKE2b-256 766940a1d8d781a70d33c57ef1b4b777486761dd1c502a86d27e90ef6aa8a9f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-win_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a7c6156f1309bb969480280906e8865c3c4378eebb0f840c55c924bf06efd8d3
MD5 c92da24669c2b7aa3e57d8be938644ee
BLAKE2b-256 3490438865fe737d65e7348680dadf3b2983bdcef7e5b7e852000e74c50a9933

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b43d0c295e93a8e5f1dd30325caaf34d4ecb51f1e3d461c7b0e71bff3a8944b
MD5 ce0d26eed0c38ae92d9706d3c1bbfded
BLAKE2b-256 afe76cc03ead5e19275e34992419e2b7d107d0295390ccf589636ff26adb41e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26c29290e7d1c5938e5886594dc0a2272b30728351ca5f855d4ae30704d5a6cc
MD5 120ca71baf9bdcedb309b26ea19feb52
BLAKE2b-256 261980289ba008f14c95fbb6e94617ea9884e421ca745864fe6b8b90e1c3fc94

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d57ed7aac048b18809af70350c31acc0fb9f00e6c03b6ed1651fd58b174882d
MD5 60ff2bec98060fddc7997c5d8641d022
BLAKE2b-256 7e31d229f6cdb9cbe03020499d69c4b431b705aa19a55aa0fe698c98022b2fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6db5532831791d7bac089fc580e741e99869122946bb6a5f120016c83b95d10
MD5 f0e020d75844c7356b0a637b9c664226
BLAKE2b-256 818b9b355309d448e1a737fac31d45e9b2484ffb0f04f10fba3b544efe6661e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0db6485bc9f32b69aaccf9ad520782371a79904dcfe20b6da5cbfd61a712e85f
MD5 7877a44bbb03f4a6fa6edfcc96a8c301
BLAKE2b-256 4bf0658012a91a690d82f3587fd8e56ea1d9b9698c31970929a9dba17edd211e

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c9c79b5f28dcf9b2e2557ce51b938b21b7a9d508e008dc1ffea7b8249e7bd443
MD5 82361554823338d8a9bb23b2a6d6036d
BLAKE2b-256 5f4e6be5fbd2ceccd87b168c64edeefa469cd11f095bb63b16a61a29296b0fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8b4f5b18cbe335322a51d2785bb044036609c35bfac5915bff95eadc10e89ef1
MD5 60b8db9c113482243c3c5b12d77b2e06
BLAKE2b-256 2f69d2b0f434b0ae35344280346b58d2b9a251609333424f3289c54506e60c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6b8012353d50d9bc81bcfe35b226d0e5bfad345fdebe0da31848395ebc83816d
MD5 5b8734da0c8cbc9c637e9aa95f02520b
BLAKE2b-256 c9b86911de6b8fdcfa76144680c2195df6ce7e0cc920a8be8c5bbd2dfe5e3c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9243ee4c224a0d74419040503f22bf067462a040281bf6f3f107ab205c97d438
MD5 15d3126ef7e4b347baafbe7311843894
BLAKE2b-256 6715ed2c9de47c3ebae980d6938f0ec12d739231438958bc5ab2d636b272d913

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88bfe134f8c7cd2dda7df34f2619448906624962c8207efdd6eb1647e2f5338b
MD5 6913bd3348206c9654e4b868dd27d62f
BLAKE2b-256 4baa12c6723ce30df721a6bace21398559c0367c5418c04139babc2d26d8d158

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2e4963c7188f57cfba248f09ebd8a14c76b5ffb87382603ccd4576f2da39d74
MD5 bf47364a96bf120156dd9884d65db010
BLAKE2b-256 4cc9be4e52fd96be601fefb313c26e1259ac2e6b556fb08cc392db641baba8c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 016e391f49933875b8d60d47f282f2e93d8ea9f9ffbda82467aa771b11a237db
MD5 e843d000c868fc29fd0b5b7b84a317fa
BLAKE2b-256 1989a4ba4d285ea4f9b0824bf31ebded3171da08bfcf5376f4771cc5481f72cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a5f5bca7e1a3e0a98480d1e2748fc86d12c28d506173e460e6746886ff0e08de
MD5 c8cafebc2501160209821b9cf883942b
BLAKE2b-256 83d5f84c3d0e022cdeb73ff8406a6834a7698829fa242eb8590ddf8a0b09357f

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9b54990fcbcf90e37393909d4033520237194263c93ab6dbfae0616ef9af242b
MD5 aa76b165849de16716cebfc7d677ceb1
BLAKE2b-256 4a58602ed184d35742eb240cbfea237bd214f2ae7f01cb369c39f4dff392f7c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2283f1014f7f86dd56b53bf0ea0d7f848eb4c9c6704b8f4f99a0af02e994e479
MD5 54a5cabd836591fe9358e98a40ea9221
BLAKE2b-256 4cb137d532292c1b3dab690636947a532d3797741b09f2dfb9cb558ffeaff34b

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84510079a2efe954e6b89fe5e62f23a98c1ef999756565e056f95f835ff43c5e
MD5 9b93abc87941bc0bfdc0d98efb751857
BLAKE2b-256 729f3344f6fe69f6fbfb19dec298b4dda3d47a87dc31e418911fdcc3a3ace013

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d1b243468a24564f85a41166f2ca4c92f8f6755da096ffbdcf551675ca739c5
MD5 0b80a9a71c28e18eee778859031827dc
BLAKE2b-256 0550a122e3076d7fd95cbe9a0cdf0fc796836f1e4fd399b418c6ba8533c75770

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60a535b79d3d6225c7c21d7277fb0c6fde80c46a9c1e33632b1b293c1d177f30
MD5 47a4d77451e4e9a9afc4c9492dd0e96b
BLAKE2b-256 0524f352cf8400f414e6a31385ef12d43d11aac8beb11d573a2fd00ec44b8cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bf4b5f0e9b6bb5a566b1a31e84a93b283f26c2b0155fb2eb5970c32a540a906
MD5 6b80e5aa9c60511ccea23d31266db685
BLAKE2b-256 9e7fe1a21337b3cba24b953c760696e3b188a533d724440e050fd60a3c1aa919

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6155a5138604b702a32f8f0a63948a539eb7468898554a9911f9ab8c899284fb
MD5 d7b908be79af59961932608f8ab4fdc1
BLAKE2b-256 b92273bd9ed7b11cd14eb0da6e2f2eae763306abaad1b25a5808da8b1fc07665

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 83e74cbde6fa5caceec5bc103c82053d50fde163e3ceabaa58c91508e984142b
MD5 03dfd85d2bed10db8c9d9e4f90e57ff6
BLAKE2b-256 5b0780c248db87ef2e753ad390fca3b0d7dd6092079e904f35b248c7064e791e

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fbb63595c7ad43c0d9caaf4d554a38a30ea4edda5e7c3ed38845562776992ba9
MD5 ff82d5e92a8570187f0e5acbad3f524c
BLAKE2b-256 87ed83fed257ea410c2e691374f04ac914d5f9414f04a9c7a266bdfbb999eb16

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d04d1cae2a9b66083cd8f48ff391731d81e0a1fdf67ab5c33ae10b3a22a0caae
MD5 0ea56f2b106a5d99b71f929ec075b57a
BLAKE2b-256 34d41f1cc444708b426b42ec52f01c735d91cb9775fe55cf3d2c64b9a6fd8792

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e74e71249165757a12fb02feee67ea95df542bcafa21b449fbd2ed0c31b48b4
MD5 7aef224f141fd65e9789894fe664a9eb
BLAKE2b-256 bd257efcb5856f9df4c003716687c4604bb5cfc44819539b79d60e302018962b

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ded5063e13c3bb6b1b463827f838ae45a0aea4c9aeaf6c938e7e87f3f6ea4126
MD5 50e405836da35f98077b2ffbe27eba6e
BLAKE2b-256 d039a9fcb0b82727ab2d5509caa7637e5d345c710502f68c7a7e90dd212654ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7f8732796e3f730556e99327861066ead0ae7e66b5cbf6c0f217be48074e41e
MD5 9e722c7b2db474ee1e7a05e383b36595
BLAKE2b-256 f40f02d5d2ae8b53e5629cb03fbd871bbbfbbd647ffc3d09393b34f6347072d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a40830a16d8718b14a462e1a1efaa26660eb3bb8ada22e0712a6ac181092750e
MD5 baf6b7fff2841a08f38dcd5c1ed27438
BLAKE2b-256 80b97456f89effe93b7693c7e39cd365065e27aa31794442510c44ad8cce6c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0834c547c39d5e5d0b769c90ac5d5ca42e00bcdbba491f3440d2d458058b19d6
MD5 11f349c3dff85715c44f3cd667c73de3
BLAKE2b-256 00ab9959c2d9c3a511a5dbfa4e2e2a1d0bdcad5929d410b3abe87bbed74dcb9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 be96f9290edd13d56fb3c69b8dd6be487552b4401f2e95b437cabf5309c424ad
MD5 a4a89fcabf4229448fd3ba79bf8a66a8
BLAKE2b-256 bf3b42aa7332c2e432fc3af3a26cc49ca8a3ecd23d13bb790e61c1e54a4d16cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bcc6e9eb111fc5b06f1623f4073b5acdae25a5baee1eea32b347a2d810deb35
MD5 ac666730f5b740f64a464877ca435683
BLAKE2b-256 62cf41c9912052afce0c3de2be92639ba609bd80f7cabde7e1abd0f80664010b

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5867ee3132cdc9f279951b8514ab51fd121acfbea120c9948b06bd1a1e43053
MD5 16c47447814c97e0b46f78f650fe3d6d
BLAKE2b-256 5f89f9145aee30ab0728abb16ee4374469eb50a65ea004c26321097c70818d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc98084076d0ceffcc3e306fd77ee22f91cc6143953e471c31c84cf2ddf68bb2
MD5 f0e3a79727a2302154b7deb9e3fc2f9b
BLAKE2b-256 b6c987a8f360436378238074e9980d876d8e5e1dea86eeaa66fab8e4acb62d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 433ddfd09f5ef3cd2593b03a39f37e6957b25a91792b17132d3414c99d5ba5dd
MD5 eab4965c5b6ffc0856a376f9a2c8fe04
BLAKE2b-256 d30317777b9cb92db034e49804522ec176bbd4898cdca0c7c1ebf483d5817bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b9d38691646da1ba12e3c0be8eb910ac52e2bcb0e553b54590c1c7aded9d5a3
MD5 dd28cdbdd431cd6f3c60a16497859f53
BLAKE2b-256 dc650ba324613bd234dc48d51da9e0124b7e97de242251135207f368b473062e

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6a80f9223f1f5eea42a853355520ff0efd38d00923dd9e581195b9ecf1095f0e
MD5 b44aa90788d5460eb22ad591e66b89d8
BLAKE2b-256 a9949f3a0e09e5f8c360dcea076be3c9a30c55e7fb23cb2741c12f70921bc061

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file faiss_cpu-1.12.0-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.12.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 564c1b707fa9e68e4551cd78cbc6dc89810d740cccfc3076c34a0ba6627119ef
MD5 0b559c7cad85e21c7dd6142dc40b6137
BLAKE2b-256 955a1ec3ee947526d95cb5656ef3343d7022f92704eee45f38249ee540378d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.12.0-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: build.yml on kyamagu/faiss-wheels

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page