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 is 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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 14.0+ x86-64

faiss_cpu-1.11.0-cp313-cp313-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 14.0+ x86-64

faiss_cpu-1.11.0-cp312-cp312-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 14.0+ x86-64

faiss_cpu-1.11.0-cp311-cp311-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 14.0+ x86-64

faiss_cpu-1.11.0-cp310-cp310-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 14.0+ x86-64

faiss_cpu-1.11.0-cp39-cp39-macosx_14_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: faiss_cpu-1.11.0.tar.gz
  • Upload date:
  • Size: 70.2 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.tar.gz
Algorithm Hash digest
SHA256 44877b896a2b30a61e35ea4970d008e8822545cb340eca4eff223ac7f40a1db9
MD5 91d5f6bcdcd806c4b165984dbff9a845
BLAKE2b-256 e79ae33fc563f007924dd4ec3c5101fe5320298d6c13c158a24a9ed849058569

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: faiss_cpu-1.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13eac45299532b10e911bff1abbb19d1bf5211aa9e72afeade653c3f1e50e042
MD5 9bea5edfe6a0bc0468aad749bc36b1a6
BLAKE2b-256 505135b7a3f47f7859363a367c344ae5d415ea9eda65db0a7d497c7ea2c0b576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c482d07194638c169b4422774366e7472877d09181ea86835e782e6304d4185
MD5 c16047b2f4ea07f0058b89dc2dcc69b5
BLAKE2b-256 6675955527414371843f558234df66fa0b62c6e86e71e4022b1be9333ac6004c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b6e355dda72b3050991bc32031b558b8f83a2b3537a2b9e905a84f28585b47e
MD5 5bbf46cb1f62e32f41bf20da3ec652d2
BLAKE2b-256 b22b437c2f36c3aa3cffe041479fced1c76420d3e92e1f434f1da3be3e6f32b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 796e90389427b1c1fb06abdb0427bb343b6350f80112a2e6090ac8f176ff7416
MD5 cc4188283eebaba586e02c264d54e9b6
BLAKE2b-256 24148af8f996d54e6097a86e6048b1a2c958c52dc985eb4f935027615079939e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0c98e5feff83b87348e44eac4d578d6f201780dae6f27f08a11d55536a20b3a8
MD5 d7af182a508414550c61e6b21b1fbab6
BLAKE2b-256 9290d2329ce56423cc61f4c20ae6b4db001c6f88f28bf5a7ef7f8bbc246fd485

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: faiss_cpu-1.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bdc199311266d2be9d299da52361cad981393327b2b8aa55af31a1b75eaaf522
MD5 1ed53d77d9a39e12d9ac7c68d6b26716
BLAKE2b-256 ff5c902a78347e9c47baaf133e47863134e564c39f9afe105795b16ee986b0df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48b7e7876829e6bdf7333041800fa3c1753bb0c47e07662e3ef55aca86981430
MD5 a95d66e3573a9fa2812dd5e8492ce000
BLAKE2b-256 7f37eaf15a7d80e1aad74f56cf737b31b4547a1a664ad3c6e4cfaf90e82454a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f9af33e0b8324e8199b93eb70ac4a951df02802a9dcff88e9afc183b11666f0
MD5 69f7f62b1393cb1400da5eccc80c085b
BLAKE2b-256 b0c8a5cb8466c981ad47750e1d5fda3d4223c82f9da947538749a582b3a2d35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 c4a3d35993e614847f3221c6931529c0bac637a00eff0d55293e1db5cb98c85f
MD5 f29dffc53b77a7753da6fdba9ccd0c29
BLAKE2b-256 9e7125f5f7b70a9f22a3efe19e7288278da460b043a3b60ad98e4e47401ed5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 356437b9a46f98c25831cdae70ca484bd6c05065af6256d87f6505005e9135b9
MD5 e5202da1f514eef269e88d4db35184c2
BLAKE2b-256 3bd37178fa07047fd770964a83543329bb5e3fc1447004cfd85186ccf65ec3ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: faiss_cpu-1.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 931db6ed2197c03a7fdf833b057c13529afa2cec8a827aa081b7f0543e4e671b
MD5 a44db5e08c01eebd5e5434b8747008bd
BLAKE2b-256 7f9aaccade34b8668b21206c0c4cf0b96cd0b750b693ba5b255c1c10cfee460f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 926645f1b6829623bc88e93bc8ca872504d604718ada3262e505177939aaee0a
MD5 dcb9d2bd5d702ffa9517006b7dea7dd5
BLAKE2b-256 53457c85551025d9f0237d891b5cffdc5d4a366011d53b4b0a423b972cc52cea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4e3433ffc7f9b8707a7963db04f8676a5756868d325644db2db9d67a618b7a0
MD5 106aeba878c1f2ae9448dde506584f3b
BLAKE2b-256 440a7c17b6df017b0bc127c6aa4066b028281e67ab83d134c7433c4e75cd6bb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2c39a388b059fb82cd97fbaa7310c3580ced63bf285be531453bfffbe89ea3dd
MD5 4017f12617089b61c63a1dbf2ead4b3b
BLAKE2b-256 2b64f97e91d89dc6327e08f619fe387d7d9945bc4be3b0f1ca1e494a41c92ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a90d1c81d0ecf2157e1d2576c482d734d10760652a5b2fcfa269916611e41f1c
MD5 11e49974d3c6c1a31486eb34117e897f
BLAKE2b-256 ed838aefc4d07624a868e046cc23ede8a59bebda57f09f72aee2150ef0855a82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: faiss_cpu-1.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30489de0356d3afa0b492ca55da164d02453db2f7323c682b69334fde9e8d48e
MD5 c1728d72a7fb981425ae001b091cbde2
BLAKE2b-256 a42cd843256aabdb7f20f0f87f61efe3fb7c2c8e7487915f560ba523cfcbab57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f53513682ca94c76472544fa5f071553e428a1453e0b9755c9673f68de45f12
MD5 c369d95e7b6dd636cc8ee8851207633c
BLAKE2b-256 95673c6b94dd3223a8ecaff1c10c11b4ac6f3f13f1ba8ab6b6109c24b6e9b23d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73408d52429558f67889581c0c6d206eedcf6fabe308908f2bdcd28fd5e8be4a
MD5 ecc80ff849839f4b9900a91e0845c063
BLAKE2b-256 6348ad79f34f1b9eba58c32399ad4fbedec3f2a717d72fb03648e906aab48a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 788d7bf24293fdecc1b93f1414ca5cc62ebd5f2fecfcbb1d77f0e0530621c95d
MD5 a52fe99620868ffbf42ab6ee1f64e199
BLAKE2b-256 ddaca94fbbbf4f38c2ad11862af92c071ff346630ebf33f3d36fe75c3817c2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1995119152928c68096b0c1e5816e3ee5b1eebcf615b80370874523be009d0f6
MD5 c37b0a41bb820bd82225cc82e04e6841
BLAKE2b-256 ede57490368ec421e44efd60a21aa88d244653c674d8d6ee6bc455d8ee3d02ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: faiss_cpu-1.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a2ad3b2aadd490d15d2d19586679ad2f4e821c1a9597af8086ba543bef4d6e1f
MD5 4d5f0dc76ac09b23a3828bc5aa09a291
BLAKE2b-256 e570d1c67a4aae510841e3a62017884950a88bd183fd971c0cb2d80f54bfcc39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 760a4f0ce612c5ddaf4862d32ec13d5b8e609c983d391d419ea5ea50d5557dd9
MD5 84b23d72dd3ae242a263162d1eef9888
BLAKE2b-256 8c3de26c8881b19fc74db116b19803ca54fdb732b3c2de274e39e81cc1515379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72165263bbc3bf4026276b9df4227bb2871823b23af6546cd41a90bcd08d5f25
MD5 9a1aba36051cd4d5e8293d79841e0099
BLAKE2b-256 1eeb33e518cf6b4c8d2d7b76e14480e7dcdff8c3484290d8b0acd6b813719f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d09d6b474c22caa0657f627be1b83d14d75ed0a29b6c06facfe9b7c9efa4ed38
MD5 020b76d9b1b7139725f04a13db4b8f3f
BLAKE2b-256 8ad8195dc69a7e01ce5111908a9b6ce547bc2f2b97a7470c80ca8c1ad415565b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for faiss_cpu-1.11.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4c029f2d21d50c1118e35457532e8a0a39f1a9fc1d864dd003e27576778bf2b5
MD5 e3775ee7a8a25ea9157a10d30ac0f4bd
BLAKE2b-256 9194b2a35bfb4af5c84295695f5eb738581cac012dd33da8067ecf1cf4401b27

See more details on using hashes here.

Provenance

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

Supported by

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