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.11.0.post1.tar.gz (70.5 kB view details)

Uploaded Source

Built Distributions

faiss_cpu-1.11.0.post1-cp313-cp313-win_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13Windows ARM64

faiss_cpu-1.11.0.post1-cp313-cp313-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.13Windows x86-64

faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.3 MB view details)

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

faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

faiss_cpu-1.11.0.post1-cp313-cp313-macosx_13_0_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

faiss_cpu-1.11.0.post1-cp312-cp312-win_arm64.whl (7.9 MB view details)

Uploaded CPython 3.12Windows ARM64

faiss_cpu-1.11.0.post1-cp312-cp312-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.12Windows x86-64

faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.3 MB view details)

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

faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

faiss_cpu-1.11.0.post1-cp312-cp312-macosx_13_0_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

faiss_cpu-1.11.0.post1-cp311-cp311-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.11Windows ARM64

faiss_cpu-1.11.0.post1-cp311-cp311-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.11Windows x86-64

faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.3 MB view details)

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

faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

faiss_cpu-1.11.0.post1-cp311-cp311-macosx_13_0_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

faiss_cpu-1.11.0.post1-cp310-cp310-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.10Windows x86-64

faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.3 MB view details)

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

faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

faiss_cpu-1.11.0.post1-cp310-cp310-macosx_13_0_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

faiss_cpu-1.11.0.post1-cp39-cp39-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.9Windows x86-64

faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (31.3 MB view details)

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

faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

faiss_cpu-1.11.0.post1-cp39-cp39-macosx_13_0_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file faiss_cpu-1.11.0.post1.tar.gz.

File metadata

  • Download URL: faiss_cpu-1.11.0.post1.tar.gz
  • Upload date:
  • Size: 70.5 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.11.0.post1.tar.gz
Algorithm Hash digest
SHA256 06b1ea9ddec9e4d9a41c8ef7478d493b08d770e9a89475056e963081eed757d1
MD5 57f0e599bd388e6394e8c8e0ef876684
BLAKE2b-256 5cf47c2136f4660ca504266cc08b38df2aa1db14fea93393b82e099ff34d7290

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1.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.11.0.post1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9cebb720cd57afdbe9dd7ed8a689c65dc5cf1bad475c5aa6fa0d0daea890beb6
MD5 290e9798ef0d0cd905c44a9e2ca2e6c4
BLAKE2b-256 1850acc117b601da14f1a79f7deda3fad49509265d6b14c2221687cabc378dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc53fe59b546dbab63144dc19dcee534ad7a213db617b37aa4d0e33c26f9bbaf
MD5 9138f1807d5effc065aaaf9d3208fe26
BLAKE2b-256 430a7394ba0220d0e13be48d7c4c4d8ddd6a2a98f7960a38359157c88e045fe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f4b0e03cd758d03012d88aa4a70e673d10b66f31f7c122adc0c8c323cad2e33
MD5 26c05cb0a64afb6300220688ff5f39c4
BLAKE2b-256 b4f9f518bd45a247fe241dc6196f3b96aef7270b3f1e1a98ebee35d8d66cc389

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f26e3e93f537b2e1633212a1b0a7dab74d77825366ed575ca434dac2fa14cea6
MD5 f131fbbc2f37e3b0af40a990375e229f
BLAKE2b-256 13e582e3cf427f11380aae54706168974724409fdf9a8caa0894d2c1f454c627

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b93131842996efbbf76f07dba1775d3a5f355f74b9ba34334f1149aef046b37f
MD5 ba1e1c6ee7f083026ea72bbdbf786e9f
BLAKE2b-256 410d4538dfccb6e28fdfafd536b6f9c565ca6f5495272ae0c3f872259b29afc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6086e25ef680301350d6db72db7315e3531582cf896a7ee3f26295b1da73c44
MD5 7f188a1d43a589e01abfe9d6268bb94f
BLAKE2b-256 ad15ae1db1c42c8bef2cfc27b9d5a032b7723aafcc9420c656c19a7eaafd717b

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 202d11f1d973224ca0bde13e7ee8b862b6de74287e626f9f8820b360e6253d12
MD5 3e863b05a30c0f6c73bc19dae3910dd8
BLAKE2b-256 ff717b06a5294e1d597f721016c6286a0c6e9912ed235d5e5d3600d4fd100ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 caedaddfbfe365e3f1a57d5151cf94ea7b73c0e4789caf68eae05e0e10ca9fbf
MD5 64f2c31f8d5034a8ead3ca34756fee4d
BLAKE2b-256 efc228c147fec80609b6ce8578df27d7fafe02d97726df2d261c446176e6ceda

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 57f85dbefe590f8399a95c07e839ee64373cfcc6db5dd35232a41137e3deefeb
MD5 f96760eb52861a78ef033c905cc9c301
BLAKE2b-256 5664ec3823d4703fa704c5e8821a5990fd0485e024d80d813231df0c65b3e18f

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8bbaef5b56d1b0c01357ee6449d464ea4e52732fdb53a40bb5b9d77923af905f
MD5 3ce9790e3299d2d9f8a6d462424670a2
BLAKE2b-256 1c174384518de0c58f49e4483c6dfdd1bc54540c9d0d71ccfcc87f6b52adfcb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00a837581b675f099c80c8c46908648dcf944a8992dd21e3887c61c6b110fe5f
MD5 aaec6912924ece6936075285e298677c
BLAKE2b-256 ca0c483d5233c41f753da6710e7026c0f7963649f6ecd1877d63c88cb204c8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 925feb69c06bfcc7f28869c99ab172f123e4b9d97a7e1353316fcc2748696f5b
MD5 9c2ce701596532caefe781eb657c575c
BLAKE2b-256 8896195aecb139db223824a6b2faf647fbe622732659c100cdeca172679cc621

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d1262702c19aba2d23144b73f4b5730ca988c1f4e43ecec87edf25171cafe3d
MD5 008b45b10070eeecbee1b7f7648abf6a
BLAKE2b-256 dba9acfdd5bd63eff99188d0587fa6de4c30092ce952a1c7229e2fd5c84499d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fafae1dcbcba3856a0bb82ffb0c3cae5922bdd6566fdd3b7feb2425cf4fca247
MD5 9fc4be28002ddfe9455ec59fdc2af8f4
BLAKE2b-256 8913d62ee83c5a0db24e9c4fc0a446949f9c8feca18659f4c17caca6c3d02867

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b940c530a8236cc0b9fd9d6e87b3d70b9c6c216bc2baf2649356c908902e52c9
MD5 eecf6adb7eb0ee609c7f73dd2bc11faf
BLAKE2b-256 05d1bd785887085faa02916c52320527b8bb54288835b0a3138df89a0e323cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 68f6ce2d9c510a5765af2f5711bd76c2c37bd598af747f3300224bdccf45378c
MD5 7eb56d9817040d3fe4973e95d9ba7756
BLAKE2b-256 301e9980758efa55b4e7a5d6df1ae17c9ddbe5a636bfbf7d22d47c67f7a530f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8384e05afb7c7968e93b81566759f862e744c0667b175086efb3d8b20949b39f
MD5 23c9d497ef676d63902b87e45deb9c31
BLAKE2b-256 a3c41873ced6e44f07cfaade55e60860f84443fa94a263ec6b355cb6ae026ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ce8a8984a7dcc689fd192c69a476ecd0b2611c61f96fe0799ff432aa73ff79c
MD5 074a01203cbcf3c03549ce0d0637be5a
BLAKE2b-256 618469dbb244cf592be8532f7a91577d765a6b663275599e636190d9745b3cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18d2221014813dc9a4236e47f9c4097a71273fbf17c3fe66243e724e2018a67a
MD5 1d1c1f2ded1226750c4c8778074b9f88
BLAKE2b-256 3e96f0159b274331db9ae6fbc85531e8ec6f69c83b28c24d16a555437af5da35

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0794eb035c6075e931996cf2b2703fbb3f47c8c34bc2d727819ddc3e5e486a31
MD5 fb10949afceeae7b3b624e6971d1e289
BLAKE2b-256 717d9cd6ac869ec062c79ef1dc62ff62e2c22b7572bf15a9454af2fdc7dc98a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81c169ea74213b2c055b8240befe7e9b42a1f3d97cda5238b3b401035ce1a18b
MD5 202885a65732bac649c4409dd5db09e4
BLAKE2b-256 8430e06cfcedf4664907f39a93f21988149f05ae7fef62e988abb9e99940beeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b15412b22a05865433aecfdebf7664b9565bd49b600d23a0a27c74a5526893e
MD5 5b6164d5295219b73a13aba1c36b4b43
BLAKE2b-256 b9d62ff9ee33e63bd37a2d38eda7da051322cb652dd04dd73d560500f266b201

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 36af46945274ed14751b788673125a8a4900408e4837a92371b0cad5708619ea
MD5 b289d100897239b37fd73a58a4e80e8b
BLAKE2b-256 74456b21bebea3e13f5e2b07741c6e5bda0b8ad07e852b3b68e4ae8e7ba53ab5

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2c8c384e65cc1b118d2903d9f3a27cd35f6c45337696fc0437f71e05f732dbc0
MD5 571ef69054628a910092e301806edda1
BLAKE2b-256 b7209c7b72089fc00da380d66af2025f28f8665b7e5034573f81a10408837096

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9dccf67d4087f9b0f937d4dccd1183929ebb6fe7622b75cba51b53e4f0055a0c
MD5 0a885ce1554d313556336a001e1a07de
BLAKE2b-256 4e2ae79cfc001f2eb210c6aef3854c54bb5ba59e92f91613dd82af9ef758def5

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6acc20021b69bd30d3cb5cadb4f8dc1c338aec887cd5411b0982e8a3e48b3d7f
MD5 ca70a86fbc1c2e5987c91b55b3aff507
BLAKE2b-256 d320317011f0bdd6848a9bc91d1be717bd3fffcb87d277c2a95e88415c95ccd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9443bc89447f9988f2288477584d2f1c59424a5e9f9a202e4ada8708df816db1
MD5 4dedbf361ff98a432eac237d686cf8bb
BLAKE2b-256 e0ad5aa28f51fa49a62371af9915317609eb1aa6295a0bc515d32271f17cd241

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76b133d746ddb3e6d39e6de62ff717cf4d45110d4af101a62d6a4fed4cd1d4d1
MD5 cabec99cf12b656650c29015e8d94fa9
BLAKE2b-256 437b1d7dccc0d8e33105c29550f179eb448fd1a174eb27431889c4958ad73671

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78812f4d7ff9d3773f50009efcf294f3da787cd8c835c1fc41d997a58100f7b5
MD5 73f37957423cd7b5e28d05dfdb8649d9
BLAKE2b-256 f76a3919602efb5f56909056e02b2f6da8ba53d3c72fa64d949ebbca319b8b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4ded0c91cb67f462ae00a4d339718ea2fbb23eedbf260c3a07de77c32c23205a
MD5 baf1bffe9cb45933368be909d37db0d0
BLAKE2b-256 b985e526467ac75ef915b1444d5a1e9ef7af54d73242f923e664fffc2db65d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e079d44ea22919f6477fea553b05854c68838ab553e1c6b1237437a8becdf89d
MD5 908b420b2bd1516809d60c9629500d14
BLAKE2b-256 c529b5c3fb0815449a5c7f1dd507da68ab30ab7a2a497178d5b4e365799f7670

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6240c4b1551eedc07e76813c2e14a1583a1db6c319a92a3934bf212d0e4c7791
MD5 57f3af5cc3143aea2d3395c1b99adeba
BLAKE2b-256 83381ac6152b231469c6167332418d25c11eb84e62c9764381e328c44256635d

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 773fa45aa98a210ab4e2c17c1b5fb45f6d7e9acb4979c9a0b320b678984428ac
MD5 464ff88736239548cb2dd8b427ebed9f
BLAKE2b-256 9c42a116192e054f1f3d4ee119afe867b971745fc339ae84097c392b23970f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc12b3f89cf48be3f2a20b37f310c3f1a7a5708fdf705f88d639339a24bb590b
MD5 2c0f62b1021ef39f1fa7188a0ce9bfe0
BLAKE2b-256 440b88e1a96a7656bd0b39c743346ae15fe5d5e7f6ba0069d8d6db681d692a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 388a590ab2847e421ba2702ff2774835287f137fb77e24e679f0063c1c10a96f
MD5 cb60a18587043e0dc8339b3bcf3d0677
BLAKE2b-256 1607631eed10230913ffa46c8bb7441505684dda43f70b855c7174f61da83bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8baf46be73b4fce99f4620d99a52cdb01f7823a849f00064f02802f554d8b59f
MD5 91ad0c0a78207d3c127ec213aebc414d
BLAKE2b-256 8b85c03f3c8f4979135cd92cf02bc2b7be2551a164feaf9a2966307e03af3219

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0348794ae91fb1454f2cddf7a9c7de23510f2a63e60c0fba0ae73bc7bf23a060
MD5 cd3fd2f825b9d15ab8a625644aea8190
BLAKE2b-256 4978d05dfeb6b8568db71592b87d5eea6778b38716c19c971bce01bccafb108a

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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.11.0.post1-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.11.0.post1-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3663059682589a42e3c4da0f3915492c466c886954cf9280273f92257bcfa0b4
MD5 89e3d33f496553602516fb81f5d7b3cc
BLAKE2b-256 0caf8a8217fa7793106d90acde01dc934ab1f00f5450c7c0a9084be4faf6a7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.11.0.post1-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