Name | faiss-gpu-cu12 JSON |
Version |
1.10.0
JSON |
| download |
home_page | None |
Summary | A library for efficient similarity search and clustering of dense vectors. |
upload_time | 2025-02-01 13:17:42 |
maintainer | None |
docs_url | None |
author | None |
requires_python | <3.13,>=3.9 |
license | MIT License
Copyright (c) 2024 Di-Is
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
The major design pattern of this repository was based in Kota Yamaguchi's faiss-wheels, which is subject to the same license.
Here is the original copyright notice for faiss-wheels:
MIT License
Copyright (c) 2019 Kota Yamaguchi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This repository uses meta's faiss and is subject to the same license.
Here is the original copyright notice for faiss:
MIT License
Copyright (c) Facebook, Inc. and its affiliates.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
search
nearest
neighbors
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# faiss-wheels
This repository is based on [kyamagu/faiss-wheels](https://github.com/kyamagu/faiss-wheels).
[](https://pypi.org/project/faiss-gpu-cu11/)
[](https://pypi.org/project/faiss-gpu-cu12/)
## Overview
This repository provides scripts to build gpu wheels for the [faiss](https://github.com/facebookresearch/faiss) library.
Distribute the `faiss-gpu-cuXX` package to PyPI using the contents of this repository.
* Builds CUDA 11.8+/CUDA 12.1+ compatible wheels.
* Support Volta\~Ada Lovelace architecture GPU (Compute Capability 7.0\~8.9).
* **Dynamically linked to CUDA Runtime and cuBLAS libraries published in PyPI.**
* Bundles OpenBLAS in Linux.
## Installation
The `faiss-gpu-cu11` and `faiss-gpu-cu12` wheels built for CUDA11 and CUDA12 are available on PyPI.
Install one or the other depending on your environment.
These wheels dynamically link to the CUDA Runtime and cuBLAS shared libraries. This approach helps to reduce the file size of the wheels.
`faiss-gpu-cuXX(XX=11 or 12)` has dependencies on CUDA Runtime (`nvidia-cuda-runtime-cuXX`) and cuBLAS (`nvidia-cublas-cuXX`) released by PyPI, and links shared libraries in these packages.
**Therefore, there is no need to install CUDA on your host(system).**
### <span style="color: red; ">Caution</span>
The published `faiss-gpu-cuXX` package requires proper setup of system, hardware, and other dependencies that cannot be managed by the package manager (e.g. pip).
It is the responsibility of the user of this package to prepare an environment suitable for its operation.
Here are the main requirements that such an environment should meet (Other conditions may be hidden.)
1. the host environment must have a CUDA-compatible Nvidia Driver installed, as required by `faiss-gpu-cuXX` (see below for details)
2. the GPU architecture of the execution environment must be compatible with `faiss-gpu-cuXX` (see below for details)
3. if you install `faiss-gpu-cuXX` and another library (e.g. Pytorch) that uses dynamically linked CUDA in the same environment, they must be linked to the same CUDA shared library.
### Wheel for CUDA12
`faiss-gpu-cu12` is a package built using CUDA Toolkit 12.1.
The following command will install faiss and the CUDA Runtime and cuBLAS for CUDA 12.1 used at build time.
```bash
# install CUDA 12.1 at the same time
$ pip install faiss-gpu-cu12[fix-cuda]
```
**Requirements**
* OS: Linux
* arch: x86_64
* glibc >=2.17
* Nvidia driver: >=R530 (specify `fix-cuda` extra during installation)
* GPU architectures: Volta\~Ada Lovelace (Compute Capability: 7.0\~8.9)
**Advanced**
The `faiss-gpu-cu12` package (the binaries contained in it) is minor version compatible with CUDA and will work dynamically linked with CUDA 12.X (X>=1).
Installation of the CUDA runtime and cuBLAS is allowed to the extent that minor version compatibility is maintained by excluding the `fix-cuda` extra.
This is useful when coexisting this package with a package that has a dependency on the CUDA Toolkit used at build time, such as Pytorch or Tensorflow.
The installation commands are as follows.
```bash
# install CUDA 12.X(X>=1) at the same time
$ pip install faiss-gpu-cu12
```
If you install the `faiss-gpu-cuXX` package in this way, CUDA may be updated due to lock file updates, etc.
Please note that this may cause an error depending on the compatibility with the driver. (Basically, to use a new CUDA, the driver must also be updated).
### Wheel for CUDA11
`faiss-gpu-cu11` is a package built using CUDA Toolkit 11.8.
The following command will install faiss and the CUDA Runtime and cuBLAS for CUDA 11.8 used at build time.
```bash
# install CUDA 11.8 at the same time
$ pip install faiss-gpu-cu11[fix-cuda]
```
**Requirements**
* OS: Linux
* arch: x86_64
* glibc >=2.17
* Nvidia driver: >=R520 (specify `fix-cuda` extra during installation)
* GPU architectures: Volta\~Ada Lovelace (Compute Capability: 7.0\~8.9)
**Advanced**
Since CUDA 11.8 is the final version of the CUDA 11 series, the results are the same with or without the `fix-cuda` extras.
```bash
# install CUDA 11.X(X>=8) at the same time
$ pip install faiss-gpu-cu11
```
### Versioning rule
Basically, it follows the versioning rules of the original faiss repository.
If there is a defect in the changed part in this repository, it will be updated with `postN` (N>=1) at the end of the version.
## Usage
You can build `faiss-gpu-cu11` and `faiss-gpu-cu12` wheels using [cibuildwheel](https://github.com/pypa/cibuildwheel).
```bash
# Number of processes used when building faiss
$ export NJOB="32"
# Optimization level of faiss
$ export FAISS_OPT_LEVEL="generic"
# Build target nvidia gpu architectures
$ export CUDA_ARCHITECTURES="70-real;80-real"
# If no tests are performed at build time for cibuildwheel
$ export CIBW_TEST_COMMAND_LINUX=""
# If tests are performed at build time for cibuildwheel
$ export CIBW_CONTAINER_ENGINE='docker; create_args: --gpus all'
# build faiss-gpu-cu11 wheels
$ uvx cibuildwheel@2.22.0 variant/gpu-cu11 --output-dir wheelhouse/gpu-cu11
# build faiss-gpu-cu12 wheels
$ uvx cibuildwheel@2.22.0 variant/gpu-cu12 --output-dir wheelhouse/gpu-cu12
```
When executed, a wheel is created under "{repository root}/wheelhouse/gpu-cuXX".
**Requirements**
* OS: Linux
* arch: x86_64
* Nvidia container toolkit (If test is performed)
* Nvidia driver: >=R530 (If test is performed)
Raw data
{
"_id": null,
"home_page": null,
"name": "faiss-gpu-cu12",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.13,>=3.9",
"maintainer_email": null,
"keywords": "search nearest neighbors",
"author": null,
"author_email": "Di-Is <rhoxbox@gmail.com>",
"download_url": null,
"platform": null,
"description": "# faiss-wheels\n\nThis repository is based on [kyamagu/faiss-wheels](https://github.com/kyamagu/faiss-wheels).\n\n[](https://pypi.org/project/faiss-gpu-cu11/)\n[](https://pypi.org/project/faiss-gpu-cu12/)\n\n## Overview\n\nThis repository provides scripts to build gpu wheels for the [faiss](https://github.com/facebookresearch/faiss) library.\nDistribute the `faiss-gpu-cuXX` package to PyPI using the contents of this repository. \n\n* Builds CUDA 11.8+/CUDA 12.1+ compatible wheels.\n * Support Volta\\~Ada Lovelace architecture GPU (Compute Capability 7.0\\~8.9).\n * **Dynamically linked to CUDA Runtime and cuBLAS libraries published in PyPI.**\n* Bundles OpenBLAS in Linux.\n\n\n## Installation\n\nThe `faiss-gpu-cu11` and `faiss-gpu-cu12` wheels built for CUDA11 and CUDA12 are available on PyPI.\nInstall one or the other depending on your environment.\nThese wheels dynamically link to the CUDA Runtime and cuBLAS shared libraries. This approach helps to reduce the file size of the wheels.\n\n`faiss-gpu-cuXX(XX=11 or 12)` has dependencies on CUDA Runtime (`nvidia-cuda-runtime-cuXX`) and cuBLAS (`nvidia-cublas-cuXX`) released by PyPI, and links shared libraries in these packages. \n**Therefore, there is no need to install CUDA on your host(system).**\n\n### <span style=\"color: red; \">Caution</span>\n\nThe published `faiss-gpu-cuXX` package requires proper setup of system, hardware, and other dependencies that cannot be managed by the package manager (e.g. pip).\nIt is the responsibility of the user of this package to prepare an environment suitable for its operation.\n\nHere are the main requirements that such an environment should meet (Other conditions may be hidden.)\n\n1. the host environment must have a CUDA-compatible Nvidia Driver installed, as required by `faiss-gpu-cuXX` (see below for details)\n2. the GPU architecture of the execution environment must be compatible with `faiss-gpu-cuXX` (see below for details)\n3. if you install `faiss-gpu-cuXX` and another library (e.g. Pytorch) that uses dynamically linked CUDA in the same environment, they must be linked to the same CUDA shared library.\n\n### Wheel for CUDA12\n\n`faiss-gpu-cu12` is a package built using CUDA Toolkit 12.1.\nThe following command will install faiss and the CUDA Runtime and cuBLAS for CUDA 12.1 used at build time.\n\n```bash\n# install CUDA 12.1 at the same time\n$ pip install faiss-gpu-cu12[fix-cuda]\n```\n\n**Requirements**\n* OS: Linux\n * arch: x86_64\n * glibc >=2.17\n* Nvidia driver: >=R530 (specify `fix-cuda` extra during installation)\n* GPU architectures: Volta\\~Ada Lovelace (Compute Capability: 7.0\\~8.9)\n\n**Advanced**\n\nThe `faiss-gpu-cu12` package (the binaries contained in it) is minor version compatible with CUDA and will work dynamically linked with CUDA 12.X (X>=1).\n\nInstallation of the CUDA runtime and cuBLAS is allowed to the extent that minor version compatibility is maintained by excluding the `fix-cuda` extra.\n\nThis is useful when coexisting this package with a package that has a dependency on the CUDA Toolkit used at build time, such as Pytorch or Tensorflow.\n\nThe installation commands are as follows.\n\n```bash\n# install CUDA 12.X(X>=1) at the same time\n$ pip install faiss-gpu-cu12\n```\n\nIf you install the `faiss-gpu-cuXX` package in this way, CUDA may be updated due to lock file updates, etc.\n\nPlease note that this may cause an error depending on the compatibility with the driver. (Basically, to use a new CUDA, the driver must also be updated).\n\n\n### Wheel for CUDA11\n\n`faiss-gpu-cu11` is a package built using CUDA Toolkit 11.8.\nThe following command will install faiss and the CUDA Runtime and cuBLAS for CUDA 11.8 used at build time.\n\n```bash\n# install CUDA 11.8 at the same time\n$ pip install faiss-gpu-cu11[fix-cuda]\n```\n\n**Requirements**\n* OS: Linux\n * arch: x86_64\n * glibc >=2.17\n* Nvidia driver: >=R520 (specify `fix-cuda` extra during installation)\n* GPU architectures: Volta\\~Ada Lovelace (Compute Capability: 7.0\\~8.9)\n\n**Advanced**\n\nSince CUDA 11.8 is the final version of the CUDA 11 series, the results are the same with or without the `fix-cuda` extras.\n\n```bash\n# install CUDA 11.X(X>=8) at the same time\n$ pip install faiss-gpu-cu11\n```\n\n### Versioning rule\n\nBasically, it follows the versioning rules of the original faiss repository.\nIf there is a defect in the changed part in this repository, it will be updated with `postN` (N>=1) at the end of the version.\n\n## Usage\n\nYou can build `faiss-gpu-cu11` and `faiss-gpu-cu12` wheels using [cibuildwheel](https://github.com/pypa/cibuildwheel).\n\n```bash\n# Number of processes used when building faiss\n$ export NJOB=\"32\"\n# Optimization level of faiss\n$ export FAISS_OPT_LEVEL=\"generic\"\n# Build target nvidia gpu architectures\n$ export CUDA_ARCHITECTURES=\"70-real;80-real\"\n# If no tests are performed at build time for cibuildwheel\n$ export CIBW_TEST_COMMAND_LINUX=\"\"\n# If tests are performed at build time for cibuildwheel\n$ export CIBW_CONTAINER_ENGINE='docker; create_args: --gpus all'\n\n# build faiss-gpu-cu11 wheels\n$ uvx cibuildwheel@2.22.0 variant/gpu-cu11 --output-dir wheelhouse/gpu-cu11\n# build faiss-gpu-cu12 wheels\n$ uvx cibuildwheel@2.22.0 variant/gpu-cu12 --output-dir wheelhouse/gpu-cu12\n```\n\nWhen executed, a wheel is created under \"{repository root}/wheelhouse/gpu-cuXX\".\n\n**Requirements**\n* OS: Linux\n * arch: x86_64\n* Nvidia container toolkit (If test is performed)\n* Nvidia driver: >=R530 (If test is performed)\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024 Di-Is\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n \n The major design pattern of this repository was based in Kota Yamaguchi's faiss-wheels, which is subject to the same license.\n Here is the original copyright notice for faiss-wheels:\n \n MIT License\n \n Copyright (c) 2019 Kota Yamaguchi\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n \n This repository uses meta's faiss and is subject to the same license.\n Here is the original copyright notice for faiss:\n \n MIT License\n \n Copyright (c) Facebook, Inc. and its affiliates.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "A library for efficient similarity search and clustering of dense vectors.",
"version": "1.10.0",
"project_urls": {
"Faiss-gpu-wheels": "https://github.com/Di-Is/faiss-gpu-wheels"
},
"split_keywords": [
"search",
"nearest",
"neighbors"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a9c7a06bb75ae9bf2d608afad0b725475ea305e9b32ab4abfcfe579bfedbe010",
"md5": "8f736755a97b728777978e2f3cd6c323",
"sha256": "c527cc521001a0c664a26f93fb6903be485b79898243c1418f82bd3d9c16a447"
},
"downloads": -1,
"filename": "faiss_gpu_cu12-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8f736755a97b728777978e2f3cd6c323",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.13,>=3.9",
"size": 47859472,
"upload_time": "2025-02-01T13:17:42",
"upload_time_iso_8601": "2025-02-01T13:17:42.819867Z",
"url": "https://files.pythonhosted.org/packages/a9/c7/a06bb75ae9bf2d608afad0b725475ea305e9b32ab4abfcfe579bfedbe010/faiss_gpu_cu12-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31b6e0878387c746773d3588a686f80913d3906f528d4bf9fc0e41a1196122c2",
"md5": "29bcb30d466b15baca89397f7b51a1b0",
"sha256": "52d96489990dde84137438937e46bb5786cd18d793a9c37fcce8b9b3f320660c"
},
"downloads": -1,
"filename": "faiss_gpu_cu12-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "29bcb30d466b15baca89397f7b51a1b0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.13,>=3.9",
"size": 47859456,
"upload_time": "2025-02-01T13:17:50",
"upload_time_iso_8601": "2025-02-01T13:17:50.534176Z",
"url": "https://files.pythonhosted.org/packages/31/b6/e0878387c746773d3588a686f80913d3906f528d4bf9fc0e41a1196122c2/faiss_gpu_cu12-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13a0d65db55c5e6b046d07ca736ab60de984fa534798b8f4e79727c00aa79b3b",
"md5": "54c0189fb605f60642b95f367eea621c",
"sha256": "8bf6f8d667a5de94b0ddef76ccb54b6b5ee06a21655804924d4f91fde4ca26fa"
},
"downloads": -1,
"filename": "faiss_gpu_cu12-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "54c0189fb605f60642b95f367eea621c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.13,>=3.9",
"size": 47858950,
"upload_time": "2025-02-01T13:17:59",
"upload_time_iso_8601": "2025-02-01T13:17:59.298800Z",
"url": "https://files.pythonhosted.org/packages/13/a0/d65db55c5e6b046d07ca736ab60de984fa534798b8f4e79727c00aa79b3b/faiss_gpu_cu12-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1f84c1fc443d434f511c1fad1935bef7545803a72e185541f0c4304cb1d9ffb",
"md5": "7a1872162653e074abd0c91cfd428e9a",
"sha256": "4f48496a829ec7f712b04461de36e1c20fd4936f2e555207a767119d3b4153ad"
},
"downloads": -1,
"filename": "faiss_gpu_cu12-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7a1872162653e074abd0c91cfd428e9a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.13,>=3.9",
"size": 47859293,
"upload_time": "2025-02-01T13:18:06",
"upload_time_iso_8601": "2025-02-01T13:18:06.544452Z",
"url": "https://files.pythonhosted.org/packages/b1/f8/4c1fc443d434f511c1fad1935bef7545803a72e185541f0c4304cb1d9ffb/faiss_gpu_cu12-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-01 13:17:42",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Di-Is",
"github_project": "faiss-gpu-wheels",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "faiss-gpu-cu12"
}