Skip to content

Commit 66dbadc

Browse files
authored
Merge branch 'main' into eglaser/svs-static-vamana
2 parents 5ed4afc + 086bd74 commit 66dbadc

7 files changed

Lines changed: 294 additions & 13 deletions

File tree

.github/workflows/build-pip.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ jobs:
5757

5858
- name: Publish to PyPI
5959
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # release/v1
60+
with:
61+
verbose: true
6062

6163
publish-testpypi:
6264
name: Publish to TestPyPI

.github/workflows/index-io-backward-compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
eval "$(conda shell.bash hook)"
5353
conda create -n faiss_conda_read -y python=3.12
5454
conda activate faiss_conda_read
55-
conda install -y -c pytorch -c conda-forge faiss-cpu=1.14.1 "mkl>=2024.2.2,<2026"
55+
conda install -y -c pytorch -c conda-forge faiss-cpu=1.14.2 "mkl>=2024.2.2,<2026"
5656
conda list
5757
5858
- name: Run Conda reader (read Faiss index and verify)
@@ -89,7 +89,7 @@ jobs:
8989
eval "$(conda shell.bash hook)"
9090
conda create -n faiss_conda_write -y python=3.12
9191
conda activate faiss_conda_write
92-
conda install -y -c pytorch -c conda-forge faiss-cpu=1.14.1 "mkl>=2024.2.2,<2026"
92+
conda install -y -c pytorch -c conda-forge faiss-cpu=1.14.2 "mkl>=2024.2.2,<2026"
9393
conda list
9494
9595
- name: Create shared data directory

CHANGELOG.md

Lines changed: 280 additions & 1 deletion
Large diffs are not rendered by default.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if(FAISS_ENABLE_CUVS)
5151
endif()
5252

5353
project(faiss
54-
VERSION 1.14.1
54+
VERSION 1.14.2
5555
DESCRIPTION "A library for efficient similarity search and clustering of dense vectors."
5656
HOMEPAGE_URL "https://github.com/facebookresearch/faiss"
5757
LANGUAGES ${FAISS_LANGUAGES})

INSTALL.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ To install the latest stable release:
1212

1313
``` shell
1414
# CPU-only version
15-
$ conda install -c pytorch -c conda-forge faiss-cpu=1.14.1
15+
$ conda install -c pytorch -c conda-forge faiss-cpu=1.14.2
1616

1717
# GPU(+CPU) version
18-
$ conda install -c pytorch -c nvidia -c conda-forge faiss-gpu=1.14.1
18+
$ conda install -c pytorch -c nvidia -c conda-forge faiss-gpu=1.14.2
1919

2020
# GPU(+CPU) version with NVIDIA cuVS
21-
$ conda install -c pytorch -c nvidia -c rapidsai -c conda-forge libnvjitlink faiss-gpu-cuvs=1.14.1
21+
$ conda install -c pytorch -c nvidia -c rapidsai -c conda-forge libnvjitlink faiss-gpu-cuvs=1.14.2
2222

2323
# GPU(+CPU) version using AMD ROCm not yet available
2424
```
@@ -34,15 +34,15 @@ If you prefer [Pixi](https://pixi.sh/latest/), you can use the same channels and
3434
``` shell
3535
# CPU-only version
3636
$ pixi init -c pytorch -c conda-forge
37-
$ pixi add faiss-cpu=1.14.1
37+
$ pixi add faiss-cpu=1.14.2
3838

3939
# GPU(+CPU) version
4040
$ pixi init -c pytorch -c nvidia -c conda-forge
41-
$ pixi add faiss-gpu=1.14.1
41+
$ pixi add faiss-gpu=1.14.2
4242

4343
# GPU(+CPU) version with NVIDIA cuVS
4444
$ pixi init -c pytorch -c nvidia -c rapidsai -c conda-forge
45-
$ pixi add libnvjitlink faiss-gpu-cuvs=1.14.1
45+
$ pixi add libnvjitlink faiss-gpu-cuvs=1.14.2
4646
```
4747

4848
Pixi resolves packages from the listed Conda channels, so the same channel requirements described above still apply.
@@ -54,7 +54,7 @@ Nightly pre-release packages can be installed as follows:
5454
$ conda install -c pytorch/label/nightly -c conda-forge faiss-cpu
5555

5656
# GPU(+CPU) version
57-
$ conda install -c pytorch/label/nightly -c nvidia -c conda-forge faiss-gpu=1.14.1
57+
$ conda install -c pytorch/label/nightly -c nvidia -c conda-forge faiss-gpu=1.14.2
5858

5959
# GPU(+CPU) version with NVIDIA cuVS (package built with CUDA 13.2)
6060
conda install -c pytorch -c rapidsai -c rapidsai-nightly -c conda-forge -c nvidia pytorch/label/nightly::faiss-gpu-cuvs 'cuda-version=13.2'

faiss/Index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#define FAISS_VERSION_MAJOR 1
1919
#define FAISS_VERSION_MINOR 14
20-
#define FAISS_VERSION_PATCH 1
20+
#define FAISS_VERSION_PATCH 2
2121

2222
// Macro to combine the version components into a single string
2323
#ifndef FAISS_STRINGIFY

faiss/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"""
115115
setup(
116116
name="faiss",
117-
version="1.14.1",
117+
version="1.14.2",
118118
description="A library for efficient similarity search and clustering of dense vectors",
119119
long_description=long_description,
120120
long_description_content_type="text/plain",

0 commit comments

Comments
 (0)