faiss-cpu


Namefaiss-cpu JSON
Version 1.11.0.post1 PyPI version JSON
download
home_pageNone
SummaryA library for efficient similarity search and clustering of dense vectors.
upload_time2025-07-15 09:15:02
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords faiss similarity search clustering machine learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # faiss-wheels

[![Build](https://github.com/kyamagu/faiss-wheels/actions/workflows/build.yml/badge.svg)](https://github.com/kyamagu/faiss-wheels/actions/workflows/build.yml)
[![PyPI](https://img.shields.io/pypi/v/faiss-cpu?label=faiss-cpu)](https://pypi.org/project/faiss-cpu/)

faiss python wheel packages.

- [faiss](https://github.com/facebookresearch/faiss)

## Overview

This repository provides scripts to build wheel packages for the
[faiss](https://github.com/facebookresearch/faiss) library.

- Builds CPU-only version with [cibuildwheel](https://github.com/pypa/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:

```bash
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.

```bash
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](https://github.com/facebookresearch/faiss/blob/master/INSTALL.md)
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.

```bash
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`](https://github.com/pypa/auditwheel) or similar tools to package the binary dependency after building a wheel.

```bash
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](https://github.com/facebookresearch/faiss) library.
The repository contains the CI workflow based on [cibuildwheel](https://github.com/pypa/cibuildwheel/).
Feel free to make a pull request to fix packaging problems.

Other relevant resources:

- [Packaging projects with GPU code](https://pypackaging-native.github.io/key-issues/gpus/)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "faiss-cpu",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "faiss, similarity search, clustering, machine learning",
    "author": null,
    "author_email": "Kota Yamaguchi <yamaguchi_kota@cyberagent.co.jp>",
    "download_url": "https://files.pythonhosted.org/packages/5c/f4/7c2136f4660ca504266cc08b38df2aa1db14fea93393b82e099ff34d7290/faiss_cpu-1.11.0.post1.tar.gz",
    "platform": null,
    "description": "# faiss-wheels\n\n[![Build](https://github.com/kyamagu/faiss-wheels/actions/workflows/build.yml/badge.svg)](https://github.com/kyamagu/faiss-wheels/actions/workflows/build.yml)\n[![PyPI](https://img.shields.io/pypi/v/faiss-cpu?label=faiss-cpu)](https://pypi.org/project/faiss-cpu/)\n\nfaiss python wheel packages.\n\n- [faiss](https://github.com/facebookresearch/faiss)\n\n## Overview\n\nThis repository provides scripts to build wheel packages for the\n[faiss](https://github.com/facebookresearch/faiss) library.\n\n- Builds CPU-only version with [cibuildwheel](https://github.com/pypa/cibuildwheel/).\n- Bundles OpenBLAS in Linux/Windows\n- Uses Accelerate framework in macOS\n\nThere is also a source package to customize the build process.\n\n> **Note**\n> GPU binary package is discontinued as of 1.7.3 release. Build a source package to support GPU features.\n\n### Install\n\nInstall the CPU-only binary package by:\n\n```bash\npip install faiss-cpu\n```\n\nNote that the package name is `faiss-cpu`.\n\n## Supporting GPU or customized build configuration\n\nThe PyPI binary package does not support GPU.\nTo support GPU methods or use faiss with different build configuration, build a source package.\nFor building the source package, swig 3.0.12 or later needs to be available.\nAlso, there should be all the required prerequisites for building faiss itself, such as `nvcc` and CUDA toolkit.\n\n## Building faiss\n\n*The source package assumes faiss and OpenBLAS are already built and installed in the system.*\nIf not done so elsewhere, build and install the faiss library first.\nThe following example builds and installs faiss with GPU support and avx512 instruction set.\n\n```bash\ngit clone https://github.com/facebookresearch/faiss.git\ncd faiss\ncmake . -B build -DFAISS_ENABLE_GPU=ON -DFAISS_ENABLE_PYTHON=OFF -DFAISS_OPT_LEVEL=avx512\ncmake --build build --config Release -j\ncmake --install build install\ncd ..\n```\n\nSee the official\n[faiss installation instruction](https://github.com/facebookresearch/faiss/blob/master/INSTALL.md)\nfor more on how to build and install faiss.\n\n### Building and installing a source package\n\nOnce faiss is built and installed, build the source package.\nThe following builds and installs the faiss-cpu source package with GPU and AVX512.\n\n```bash\nexport FAISS_ENABLE_GPU=ON FAISS_OPT_LEVEL=avx512\npip install --no-binary :all: faiss-cpu\n```\n\nThere are a few environment variables that specifies build-time options.\n- `FAISS_INSTALL_PREFIX`: Specifies the install location of faiss library, default to `/usr/local`.\n- `FAISS_OPT_LEVEL`: Faiss SIMD optimization, one of `generic`, `avx2`, `avx512`. Note that AVX option is only available in x86_64 arch.\n- `FAISS_ENABLE_GPU`: Setting this variable to `ON` builds GPU wrappers. Set this variable if faiss is built with GPU support.\n- `CUDA_HOME`: Specifies CUDA install location for building GPU wrappers, default to `/usr/local/cuda`.\n\nNote 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`](https://github.com/pypa/auditwheel) or similar tools to package the binary dependency after building a wheel.\n\n```bash\nexport FAISS_ENABLE_GPU=ON FAISS_OPT_LEVEL=avx512\npip wheel --no-binary :all: faiss-cpu\n```\n\n> **Note**\n> Currently, the source package only supports the OpenBLAS backend; other BLAS implementation is not supported.\n\n## Development\n\nThis repository is intended to support PyPI distribution for the official [faiss](https://github.com/facebookresearch/faiss) library.\nThe repository contains the CI workflow based on [cibuildwheel](https://github.com/pypa/cibuildwheel/).\nFeel free to make a pull request to fix packaging problems.\n\nOther relevant resources:\n\n- [Packaging projects with GPU code](https://pypackaging-native.github.io/key-issues/gpus/)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A library for efficient similarity search and clustering of dense vectors.",
    "version": "1.11.0.post1",
    "project_urls": {
        "Repository": "https://github.com/kyamagu/faiss-wheels"
    },
    "split_keywords": [
        "faiss",
        " similarity search",
        " clustering",
        " machine learning"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c529b5c3fb0815449a5c7f1dd507da68ab30ab7a2a497178d5b4e365799f7670",
                "md5": "908b420b2bd1516809d60c9629500d14",
                "sha256": "e079d44ea22919f6477fea553b05854c68838ab553e1c6b1237437a8becdf89d"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "908b420b2bd1516809d60c9629500d14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 7886451,
            "upload_time": "2025-07-15T09:13:32",
            "upload_time_iso_8601": "2025-07-15T09:13:32.159864Z",
            "url": "https://files.pythonhosted.org/packages/c5/29/b5c3fb0815449a5c7f1dd507da68ab30ab7a2a497178d5b4e365799f7670/faiss_cpu-1.11.0.post1-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b985e526467ac75ef915b1444d5a1e9ef7af54d73242f923e664fffc2db65d54",
                "md5": "baf1bffe9cb45933368be909d37db0d0",
                "sha256": "4ded0c91cb67f462ae00a4d339718ea2fbb23eedbf260c3a07de77c32c23205a"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "baf1bffe9cb45933368be909d37db0d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3308139,
            "upload_time": "2025-07-15T09:13:34",
            "upload_time_iso_8601": "2025-07-15T09:13:34.033343Z",
            "url": "https://files.pythonhosted.org/packages/b9/85/e526467ac75ef915b1444d5a1e9ef7af54d73242f923e664fffc2db65d54/faiss_cpu-1.11.0.post1-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f76a3919602efb5f56909056e02b2f6da8ba53d3c72fa64d949ebbca319b8b99",
                "md5": "73f37957423cd7b5e28d05dfdb8649d9",
                "sha256": "78812f4d7ff9d3773f50009efcf294f3da787cd8c835c1fc41d997a58100f7b5"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73f37957423cd7b5e28d05dfdb8649d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3778597,
            "upload_time": "2025-07-15T09:13:35",
            "upload_time_iso_8601": "2025-07-15T09:13:35.916269Z",
            "url": "https://files.pythonhosted.org/packages/f7/6a/3919602efb5f56909056e02b2f6da8ba53d3c72fa64d949ebbca319b8b99/faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "437b1d7dccc0d8e33105c29550f179eb448fd1a174eb27431889c4958ad73671",
                "md5": "cabec99cf12b656650c29015e8d94fa9",
                "sha256": "76b133d746ddb3e6d39e6de62ff717cf4d45110d4af101a62d6a4fed4cd1d4d1"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cabec99cf12b656650c29015e8d94fa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 31295326,
            "upload_time": "2025-07-15T09:13:38",
            "upload_time_iso_8601": "2025-07-15T09:13:38.129912Z",
            "url": "https://files.pythonhosted.org/packages/43/7b/1d7dccc0d8e33105c29550f179eb448fd1a174eb27431889c4958ad73671/faiss_cpu-1.11.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0ad5aa28f51fa49a62371af9915317609eb1aa6295a0bc515d32271f17cd241",
                "md5": "4dedbf361ff98a432eac237d686cf8bb",
                "sha256": "9443bc89447f9988f2288477584d2f1c59424a5e9f9a202e4ada8708df816db1"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4dedbf361ff98a432eac237d686cf8bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 9700922,
            "upload_time": "2025-07-15T09:13:40",
            "upload_time_iso_8601": "2025-07-15T09:13:40.418125Z",
            "url": "https://files.pythonhosted.org/packages/e0/ad/5aa28f51fa49a62371af9915317609eb1aa6295a0bc515d32271f17cd241/faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d320317011f0bdd6848a9bc91d1be717bd3fffcb87d277c2a95e88415c95ccd3",
                "md5": "ca70a86fbc1c2e5987c91b55b3aff507",
                "sha256": "6acc20021b69bd30d3cb5cadb4f8dc1c338aec887cd5411b0982e8a3e48b3d7f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca70a86fbc1c2e5987c91b55b3aff507",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 24018590,
            "upload_time": "2025-07-15T09:13:42",
            "upload_time_iso_8601": "2025-07-15T09:13:42.949441Z",
            "url": "https://files.pythonhosted.org/packages/d3/20/317011f0bdd6848a9bc91d1be717bd3fffcb87d277c2a95e88415c95ccd3/faiss_cpu-1.11.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e2ae79cfc001f2eb210c6aef3854c54bb5ba59e92f91613dd82af9ef758def5",
                "md5": "0a885ce1554d313556336a001e1a07de",
                "sha256": "9dccf67d4087f9b0f937d4dccd1183929ebb6fe7622b75cba51b53e4f0055a0c"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a885ce1554d313556336a001e1a07de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 14880811,
            "upload_time": "2025-07-15T09:13:45",
            "upload_time_iso_8601": "2025-07-15T09:13:45.170905Z",
            "url": "https://files.pythonhosted.org/packages/4e/2a/e79cfc001f2eb210c6aef3854c54bb5ba59e92f91613dd82af9ef758def5/faiss_cpu-1.11.0.post1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7209c7b72089fc00da380d66af2025f28f8665b7e5034573f81a10408837096",
                "md5": "571ef69054628a910092e301806edda1",
                "sha256": "2c8c384e65cc1b118d2903d9f3a27cd35f6c45337696fc0437f71e05f732dbc0"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "571ef69054628a910092e301806edda1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 7886449,
            "upload_time": "2025-07-15T09:13:47",
            "upload_time_iso_8601": "2025-07-15T09:13:47.069563Z",
            "url": "https://files.pythonhosted.org/packages/b7/20/9c7b72089fc00da380d66af2025f28f8665b7e5034573f81a10408837096/faiss_cpu-1.11.0.post1-cp311-cp311-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74456b21bebea3e13f5e2b07741c6e5bda0b8ad07e852b3b68e4ae8e7ba53ab5",
                "md5": "b289d100897239b37fd73a58a4e80e8b",
                "sha256": "36af46945274ed14751b788673125a8a4900408e4837a92371b0cad5708619ea"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b289d100897239b37fd73a58a4e80e8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3308146,
            "upload_time": "2025-07-15T09:13:48",
            "upload_time_iso_8601": "2025-07-15T09:13:48.838811Z",
            "url": "https://files.pythonhosted.org/packages/74/45/6b21bebea3e13f5e2b07741c6e5bda0b8ad07e852b3b68e4ae8e7ba53ab5/faiss_cpu-1.11.0.post1-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9d62ff9ee33e63bd37a2d38eda7da051322cb652dd04dd73d560500f266b201",
                "md5": "5b6164d5295219b73a13aba1c36b4b43",
                "sha256": "1b15412b22a05865433aecfdebf7664b9565bd49b600d23a0a27c74a5526893e"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5b6164d5295219b73a13aba1c36b4b43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3778592,
            "upload_time": "2025-07-15T09:13:50",
            "upload_time_iso_8601": "2025-07-15T09:13:50.322245Z",
            "url": "https://files.pythonhosted.org/packages/b9/d6/2ff9ee33e63bd37a2d38eda7da051322cb652dd04dd73d560500f266b201/faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8430e06cfcedf4664907f39a93f21988149f05ae7fef62e988abb9e99940beeb",
                "md5": "202885a65732bac649c4409dd5db09e4",
                "sha256": "81c169ea74213b2c055b8240befe7e9b42a1f3d97cda5238b3b401035ce1a18b"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "202885a65732bac649c4409dd5db09e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 31295285,
            "upload_time": "2025-07-15T09:13:52",
            "upload_time_iso_8601": "2025-07-15T09:13:52.612789Z",
            "url": "https://files.pythonhosted.org/packages/84/30/e06cfcedf4664907f39a93f21988149f05ae7fef62e988abb9e99940beeb/faiss_cpu-1.11.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "717d9cd6ac869ec062c79ef1dc62ff62e2c22b7572bf15a9454af2fdc7dc98a0",
                "md5": "fb10949afceeae7b3b624e6971d1e289",
                "sha256": "0794eb035c6075e931996cf2b2703fbb3f47c8c34bc2d727819ddc3e5e486a31"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fb10949afceeae7b3b624e6971d1e289",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 9700900,
            "upload_time": "2025-07-15T09:13:54",
            "upload_time_iso_8601": "2025-07-15T09:13:54.894826Z",
            "url": "https://files.pythonhosted.org/packages/71/7d/9cd6ac869ec062c79ef1dc62ff62e2c22b7572bf15a9454af2fdc7dc98a0/faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e96f0159b274331db9ae6fbc85531e8ec6f69c83b28c24d16a555437af5da35",
                "md5": "1d1c1f2ded1226750c4c8778074b9f88",
                "sha256": "18d2221014813dc9a4236e47f9c4097a71273fbf17c3fe66243e724e2018a67a"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d1c1f2ded1226750c4c8778074b9f88",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 24018792,
            "upload_time": "2025-07-15T09:13:57",
            "upload_time_iso_8601": "2025-07-15T09:13:57.524072Z",
            "url": "https://files.pythonhosted.org/packages/3e/96/f0159b274331db9ae6fbc85531e8ec6f69c83b28c24d16a555437af5da35/faiss_cpu-1.11.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "618469dbb244cf592be8532f7a91577d765a6b663275599e636190d9745b3cc5",
                "md5": "074a01203cbcf3c03549ce0d0637be5a",
                "sha256": "3ce8a8984a7dcc689fd192c69a476ecd0b2611c61f96fe0799ff432aa73ff79c"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "074a01203cbcf3c03549ce0d0637be5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 14880665,
            "upload_time": "2025-07-15T09:13:59",
            "upload_time_iso_8601": "2025-07-15T09:13:59.971550Z",
            "url": "https://files.pythonhosted.org/packages/61/84/69dbb244cf592be8532f7a91577d765a6b663275599e636190d9745b3cc5/faiss_cpu-1.11.0.post1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3c41873ced6e44f07cfaade55e60860f84443fa94a263ec6b355cb6ae026ca4",
                "md5": "23c9d497ef676d63902b87e45deb9c31",
                "sha256": "8384e05afb7c7968e93b81566759f862e744c0667b175086efb3d8b20949b39f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "23c9d497ef676d63902b87e45deb9c31",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 7849518,
            "upload_time": "2025-07-15T09:14:04",
            "upload_time_iso_8601": "2025-07-15T09:14:04.398653Z",
            "url": "https://files.pythonhosted.org/packages/a3/c4/1873ced6e44f07cfaade55e60860f84443fa94a263ec6b355cb6ae026ca4/faiss_cpu-1.11.0.post1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "301e9980758efa55b4e7a5d6df1ae17c9ddbe5a636bfbf7d22d47c67f7a530f4",
                "md5": "7eb56d9817040d3fe4973e95d9ba7756",
                "sha256": "68f6ce2d9c510a5765af2f5711bd76c2c37bd598af747f3300224bdccf45378c"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7eb56d9817040d3fe4973e95d9ba7756",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 7913676,
            "upload_time": "2025-07-15T09:14:06",
            "upload_time_iso_8601": "2025-07-15T09:14:06.077011Z",
            "url": "https://files.pythonhosted.org/packages/30/1e/9980758efa55b4e7a5d6df1ae17c9ddbe5a636bfbf7d22d47c67f7a530f4/faiss_cpu-1.11.0.post1-cp312-cp312-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05d1bd785887085faa02916c52320527b8bb54288835b0a3138df89a0e323cc8",
                "md5": "eecf6adb7eb0ee609c7f73dd2bc11faf",
                "sha256": "b940c530a8236cc0b9fd9d6e87b3d70b9c6c216bc2baf2649356c908902e52c9"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eecf6adb7eb0ee609c7f73dd2bc11faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3313952,
            "upload_time": "2025-07-15T09:14:07",
            "upload_time_iso_8601": "2025-07-15T09:14:07.584499Z",
            "url": "https://files.pythonhosted.org/packages/05/d1/bd785887085faa02916c52320527b8bb54288835b0a3138df89a0e323cc8/faiss_cpu-1.11.0.post1-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8913d62ee83c5a0db24e9c4fc0a446949f9c8feca18659f4c17caca6c3d02867",
                "md5": "9fc4be28002ddfe9455ec59fdc2af8f4",
                "sha256": "fafae1dcbcba3856a0bb82ffb0c3cae5922bdd6566fdd3b7feb2425cf4fca247"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9fc4be28002ddfe9455ec59fdc2af8f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3785328,
            "upload_time": "2025-07-15T09:14:09",
            "upload_time_iso_8601": "2025-07-15T09:14:09.397060Z",
            "url": "https://files.pythonhosted.org/packages/89/13/d62ee83c5a0db24e9c4fc0a446949f9c8feca18659f4c17caca6c3d02867/faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dba9acfdd5bd63eff99188d0587fa6de4c30092ce952a1c7229e2fd5c84499d4",
                "md5": "008b45b10070eeecbee1b7f7648abf6a",
                "sha256": "5d1262702c19aba2d23144b73f4b5730ca988c1f4e43ecec87edf25171cafe3d"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "008b45b10070eeecbee1b7f7648abf6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 31287778,
            "upload_time": "2025-07-15T09:14:11",
            "upload_time_iso_8601": "2025-07-15T09:14:11.252419Z",
            "url": "https://files.pythonhosted.org/packages/db/a9/acfdd5bd63eff99188d0587fa6de4c30092ce952a1c7229e2fd5c84499d4/faiss_cpu-1.11.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8896195aecb139db223824a6b2faf647fbe622732659c100cdeca172679cc621",
                "md5": "9c2ce701596532caefe781eb657c575c",
                "sha256": "925feb69c06bfcc7f28869c99ab172f123e4b9d97a7e1353316fcc2748696f5b"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9c2ce701596532caefe781eb657c575c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 9714469,
            "upload_time": "2025-07-15T09:14:18",
            "upload_time_iso_8601": "2025-07-15T09:14:18.497298Z",
            "url": "https://files.pythonhosted.org/packages/88/96/195aecb139db223824a6b2faf647fbe622732659c100cdeca172679cc621/faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca0c483d5233c41f753da6710e7026c0f7963649f6ecd1877d63c88cb204c8dc",
                "md5": "aaec6912924ece6936075285e298677c",
                "sha256": "00a837581b675f099c80c8c46908648dcf944a8992dd21e3887c61c6b110fe5f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaec6912924ece6936075285e298677c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 24012806,
            "upload_time": "2025-07-15T09:14:20",
            "upload_time_iso_8601": "2025-07-15T09:14:20.679587Z",
            "url": "https://files.pythonhosted.org/packages/ca/0c/483d5233c41f753da6710e7026c0f7963649f6ecd1877d63c88cb204c8dc/faiss_cpu-1.11.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c174384518de0c58f49e4483c6dfdd1bc54540c9d0d71ccfcc87f6b52adfcb9",
                "md5": "3ce9790e3299d2d9f8a6d462424670a2",
                "sha256": "8bbaef5b56d1b0c01357ee6449d464ea4e52732fdb53a40bb5b9d77923af905f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ce9790e3299d2d9f8a6d462424670a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 14882869,
            "upload_time": "2025-07-15T09:14:23",
            "upload_time_iso_8601": "2025-07-15T09:14:23.195401Z",
            "url": "https://files.pythonhosted.org/packages/1c/17/4384518de0c58f49e4483c6dfdd1bc54540c9d0d71ccfcc87f6b52adfcb9/faiss_cpu-1.11.0.post1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5664ec3823d4703fa704c5e8821a5990fd0485e024d80d813231df0c65b3e18f",
                "md5": "f96760eb52861a78ef033c905cc9c301",
                "sha256": "57f85dbefe590f8399a95c07e839ee64373cfcc6db5dd35232a41137e3deefeb"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f96760eb52861a78ef033c905cc9c301",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 7852194,
            "upload_time": "2025-07-15T09:14:25",
            "upload_time_iso_8601": "2025-07-15T09:14:25.501371Z",
            "url": "https://files.pythonhosted.org/packages/56/64/ec3823d4703fa704c5e8821a5990fd0485e024d80d813231df0c65b3e18f/faiss_cpu-1.11.0.post1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efc228c147fec80609b6ce8578df27d7fafe02d97726df2d261c446176e6ceda",
                "md5": "64f2c31f8d5034a8ead3ca34756fee4d",
                "sha256": "caedaddfbfe365e3f1a57d5151cf94ea7b73c0e4789caf68eae05e0e10ca9fbf"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64f2c31f8d5034a8ead3ca34756fee4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 7913678,
            "upload_time": "2025-07-15T09:14:27",
            "upload_time_iso_8601": "2025-07-15T09:14:27.072682Z",
            "url": "https://files.pythonhosted.org/packages/ef/c2/28c147fec80609b6ce8578df27d7fafe02d97726df2d261c446176e6ceda/faiss_cpu-1.11.0.post1-cp313-cp313-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff717b06a5294e1d597f721016c6286a0c6e9912ed235d5e5d3600d4fd100ba8",
                "md5": "3e863b05a30c0f6c73bc19dae3910dd8",
                "sha256": "202d11f1d973224ca0bde13e7ee8b862b6de74287e626f9f8820b360e6253d12"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e863b05a30c0f6c73bc19dae3910dd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3313956,
            "upload_time": "2025-07-15T09:14:29",
            "upload_time_iso_8601": "2025-07-15T09:14:29.061603Z",
            "url": "https://files.pythonhosted.org/packages/ff/71/7b06a5294e1d597f721016c6286a0c6e9912ed235d5e5d3600d4fd100ba8/faiss_cpu-1.11.0.post1-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad15ae1db1c42c8bef2cfc27b9d5a032b7723aafcc9420c656c19a7eaafd717b",
                "md5": "7f188a1d43a589e01abfe9d6268bb94f",
                "sha256": "f6086e25ef680301350d6db72db7315e3531582cf896a7ee3f26295b1da73c44"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f188a1d43a589e01abfe9d6268bb94f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3785332,
            "upload_time": "2025-07-15T09:14:30",
            "upload_time_iso_8601": "2025-07-15T09:14:30.784360Z",
            "url": "https://files.pythonhosted.org/packages/ad/15/ae1db1c42c8bef2cfc27b9d5a032b7723aafcc9420c656c19a7eaafd717b/faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "410d4538dfccb6e28fdfafd536b6f9c565ca6f5495272ae0c3f872259b29afc8",
                "md5": "ba1e1c6ee7f083026ea72bbdbf786e9f",
                "sha256": "b93131842996efbbf76f07dba1775d3a5f355f74b9ba34334f1149aef046b37f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba1e1c6ee7f083026ea72bbdbf786e9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 31287781,
            "upload_time": "2025-07-15T09:14:32",
            "upload_time_iso_8601": "2025-07-15T09:14:32.791312Z",
            "url": "https://files.pythonhosted.org/packages/41/0d/4538dfccb6e28fdfafd536b6f9c565ca6f5495272ae0c3f872259b29afc8/faiss_cpu-1.11.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13e582e3cf427f11380aae54706168974724409fdf9a8caa0894d2c1f454c627",
                "md5": "f131fbbc2f37e3b0af40a990375e229f",
                "sha256": "f26e3e93f537b2e1633212a1b0a7dab74d77825366ed575ca434dac2fa14cea6"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f131fbbc2f37e3b0af40a990375e229f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 9714472,
            "upload_time": "2025-07-15T09:14:35",
            "upload_time_iso_8601": "2025-07-15T09:14:35.537600Z",
            "url": "https://files.pythonhosted.org/packages/13/e5/82e3cf427f11380aae54706168974724409fdf9a8caa0894d2c1f454c627/faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4f9f518bd45a247fe241dc6196f3b96aef7270b3f1e1a98ebee35d8d66cc389",
                "md5": "26c05cb0a64afb6300220688ff5f39c4",
                "sha256": "7f4b0e03cd758d03012d88aa4a70e673d10b66f31f7c122adc0c8c323cad2e33"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26c05cb0a64afb6300220688ff5f39c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 24012805,
            "upload_time": "2025-07-15T09:14:38",
            "upload_time_iso_8601": "2025-07-15T09:14:38.362811Z",
            "url": "https://files.pythonhosted.org/packages/b4/f9/f518bd45a247fe241dc6196f3b96aef7270b3f1e1a98ebee35d8d66cc389/faiss_cpu-1.11.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "430a7394ba0220d0e13be48d7c4c4d8ddd6a2a98f7960a38359157c88e045fe3",
                "md5": "9138f1807d5effc065aaaf9d3208fe26",
                "sha256": "bc53fe59b546dbab63144dc19dcee534ad7a213db617b37aa4d0e33c26f9bbaf"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9138f1807d5effc065aaaf9d3208fe26",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 14882903,
            "upload_time": "2025-07-15T09:14:41",
            "upload_time_iso_8601": "2025-07-15T09:14:41.148625Z",
            "url": "https://files.pythonhosted.org/packages/43/0a/7394ba0220d0e13be48d7c4c4d8ddd6a2a98f7960a38359157c88e045fe3/faiss_cpu-1.11.0.post1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1850acc117b601da14f1a79f7deda3fad49509265d6b14c2221687cabc378dad",
                "md5": "290e9798ef0d0cd905c44a9e2ca2e6c4",
                "sha256": "9cebb720cd57afdbe9dd7ed8a689c65dc5cf1bad475c5aa6fa0d0daea890beb6"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "290e9798ef0d0cd905c44a9e2ca2e6c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 7852193,
            "upload_time": "2025-07-15T09:14:43",
            "upload_time_iso_8601": "2025-07-15T09:14:43.113022Z",
            "url": "https://files.pythonhosted.org/packages/18/50/acc117b601da14f1a79f7deda3fad49509265d6b14c2221687cabc378dad/faiss_cpu-1.11.0.post1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0caf8a8217fa7793106d90acde01dc934ab1f00f5450c7c0a9084be4faf6a7fc",
                "md5": "89e3d33f496553602516fb81f5d7b3cc",
                "sha256": "3663059682589a42e3c4da0f3915492c466c886954cf9280273f92257bcfa0b4"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89e3d33f496553602516fb81f5d7b3cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 7886529,
            "upload_time": "2025-07-15T09:14:44",
            "upload_time_iso_8601": "2025-07-15T09:14:44.740233Z",
            "url": "https://files.pythonhosted.org/packages/0c/af/8a8217fa7793106d90acde01dc934ab1f00f5450c7c0a9084be4faf6a7fc/faiss_cpu-1.11.0.post1-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4978d05dfeb6b8568db71592b87d5eea6778b38716c19c971bce01bccafb108a",
                "md5": "cd3fd2f825b9d15ab8a625644aea8190",
                "sha256": "0348794ae91fb1454f2cddf7a9c7de23510f2a63e60c0fba0ae73bc7bf23a060"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd3fd2f825b9d15ab8a625644aea8190",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3309183,
            "upload_time": "2025-07-15T09:14:46",
            "upload_time_iso_8601": "2025-07-15T09:14:46.619919Z",
            "url": "https://files.pythonhosted.org/packages/49/78/d05dfeb6b8568db71592b87d5eea6778b38716c19c971bce01bccafb108a/faiss_cpu-1.11.0.post1-cp39-cp39-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b85c03f3c8f4979135cd92cf02bc2b7be2551a164feaf9a2966307e03af3219",
                "md5": "91ad0c0a78207d3c127ec213aebc414d",
                "sha256": "8baf46be73b4fce99f4620d99a52cdb01f7823a849f00064f02802f554d8b59f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91ad0c0a78207d3c127ec213aebc414d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3777746,
            "upload_time": "2025-07-15T09:14:48",
            "upload_time_iso_8601": "2025-07-15T09:14:48.049549Z",
            "url": "https://files.pythonhosted.org/packages/8b/85/c03f3c8f4979135cd92cf02bc2b7be2551a164feaf9a2966307e03af3219/faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1607631eed10230913ffa46c8bb7441505684dda43f70b855c7174f61da83bfb",
                "md5": "cb60a18587043e0dc8339b3bcf3d0677",
                "sha256": "388a590ab2847e421ba2702ff2774835287f137fb77e24e679f0063c1c10a96f"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb60a18587043e0dc8339b3bcf3d0677",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 31294831,
            "upload_time": "2025-07-15T09:14:51",
            "upload_time_iso_8601": "2025-07-15T09:14:51.729820Z",
            "url": "https://files.pythonhosted.org/packages/16/07/631eed10230913ffa46c8bb7441505684dda43f70b855c7174f61da83bfb/faiss_cpu-1.11.0.post1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "440b88e1a96a7656bd0b39c743346ae15fe5d5e7f6ba0069d8d6db681d692a8a",
                "md5": "2c0f62b1021ef39f1fa7188a0ce9bfe0",
                "sha256": "dc12b3f89cf48be3f2a20b37f310c3f1a7a5708fdf705f88d639339a24bb590b"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2c0f62b1021ef39f1fa7188a0ce9bfe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 9700293,
            "upload_time": "2025-07-15T09:14:54",
            "upload_time_iso_8601": "2025-07-15T09:14:54.095738Z",
            "url": "https://files.pythonhosted.org/packages/44/0b/88e1a96a7656bd0b39c743346ae15fe5d5e7f6ba0069d8d6db681d692a8a/faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c42a116192e054f1f3d4ee119afe867b971745fc339ae84097c392b23970f94",
                "md5": "464ff88736239548cb2dd8b427ebed9f",
                "sha256": "773fa45aa98a210ab4e2c17c1b5fb45f6d7e9acb4979c9a0b320b678984428ac"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "464ff88736239548cb2dd8b427ebed9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 24016970,
            "upload_time": "2025-07-15T09:14:57",
            "upload_time_iso_8601": "2025-07-15T09:14:57.427764Z",
            "url": "https://files.pythonhosted.org/packages/9c/42/a116192e054f1f3d4ee119afe867b971745fc339ae84097c392b23970f94/faiss_cpu-1.11.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83381ac6152b231469c6167332418d25c11eb84e62c9764381e328c44256635d",
                "md5": "57f3af5cc3143aea2d3395c1b99adeba",
                "sha256": "6240c4b1551eedc07e76813c2e14a1583a1db6c319a92a3934bf212d0e4c7791"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "57f3af5cc3143aea2d3395c1b99adeba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 14881368,
            "upload_time": "2025-07-15T09:15:00",
            "upload_time_iso_8601": "2025-07-15T09:15:00.171822Z",
            "url": "https://files.pythonhosted.org/packages/83/38/1ac6152b231469c6167332418d25c11eb84e62c9764381e328c44256635d/faiss_cpu-1.11.0.post1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cf47c2136f4660ca504266cc08b38df2aa1db14fea93393b82e099ff34d7290",
                "md5": "57f0e599bd388e6394e8c8e0ef876684",
                "sha256": "06b1ea9ddec9e4d9a41c8ef7478d493b08d770e9a89475056e963081eed757d1"
            },
            "downloads": -1,
            "filename": "faiss_cpu-1.11.0.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "57f0e599bd388e6394e8c8e0ef876684",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 70543,
            "upload_time": "2025-07-15T09:15:02",
            "upload_time_iso_8601": "2025-07-15T09:15:02.127616Z",
            "url": "https://files.pythonhosted.org/packages/5c/f4/7c2136f4660ca504266cc08b38df2aa1db14fea93393b82e099ff34d7290/faiss_cpu-1.11.0.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-15 09:15:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kyamagu",
    "github_project": "faiss-wheels",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "faiss-cpu"
}
        
Elapsed time: 2.04626s