Skip to content

Commit 338a5fb

Browse files
Michael Norrismeta-codesync[bot]
authored andcommitted
Release 1.13.1 (#4707)
Summary: Pull Request resolved: #4707 bug fixes Creating it for #4691 Reviewed By: trang-nm-nguyen Differential Revision: D88171955 fbshipit-source-id: 23826c1ce66c372358749423916e2297feebe31e
1 parent 08fd6ec commit 338a5fb

5 files changed

Lines changed: 35 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
## [1.13.1] - 2025-12-02
7+
8+
9+
Added
10+
- add dataset DINO10B (#4686)
11+
- Implement multi-bit RaBitQ quantization (nb_bits 2-9) (#4679)
12+
- Add copyright header to test_flat_l2_panorama.py (#4688)
13+
- Integrate Panorama into `IndexHNSWFlatPanorama` (#4621)
14+
- Implement `IndexFlatL2Panorama` (#4645)
15+
16+
17+
Changed
18+
- clamping variable used for computing percentile (#4687)
19+
- Remove unused variable
20+
- Revert D85902427 (#4690)
21+
- Optimize ScalarQuantizer (#4652)
22+
- Update comment to clarify useFloat16 in GpuClonerOptions.h (#4682)
23+
- facebook-hte-SharedPtrFromNew in StandardGpuResources.cpp (#4680)
24+
25+
26+
Fixed
27+
- Fix deprecated this capture in faiss/gpu/GpuIcmEncoder.cu +1
28+
- Refactor sharding to not oom (#4678)
29+
- Fix significant GOMP barrier overhead in exhaustive_L2sqr_blas. (#4663)
30+
- Fix typos in tests and contrib directories (#4672)
31+
32+
33+
634
## [1.13.0] - 2025-11-11
735

836

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if(FAISS_ENABLE_CUVS)
4747
endif()
4848

4949
project(faiss
50-
VERSION 1.13.0
50+
VERSION 1.13.1
5151
DESCRIPTION "A library for efficient similarity search and clustering of dense vectors."
5252
HOMEPAGE_URL "https://github.com/facebookresearch/faiss"
5353
LANGUAGES ${FAISS_LANGUAGES})

INSTALL.md

Lines changed: 4 additions & 4 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 faiss-cpu=1.13.0
15+
$ conda install -c pytorch faiss-cpu=1.13.1
1616

1717
# GPU(+CPU) version
18-
$ conda install -c pytorch -c nvidia faiss-gpu=1.13.0
18+
$ conda install -c pytorch -c nvidia faiss-gpu=1.13.1
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.13.0
21+
$ conda install -c pytorch -c nvidia -c rapidsai -c conda-forge libnvjitlink faiss-gpu-cuvs=1.13.1
2222

2323
# GPU(+CPU) version using AMD ROCm not yet available
2424
```
@@ -34,7 +34,7 @@ Nightly pre-release packages can be installed as follows:
3434
$ conda install -c pytorch/label/nightly faiss-cpu
3535

3636
# GPU(+CPU) version
37-
$ conda install -c pytorch/label/nightly -c nvidia faiss-gpu=1.13.0
37+
$ conda install -c pytorch/label/nightly -c nvidia faiss-gpu=1.13.1
3838

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

faiss/Index.h

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

1919
#define FAISS_VERSION_MAJOR 1
2020
#define FAISS_VERSION_MINOR 13
21-
#define FAISS_VERSION_PATCH 0
21+
#define FAISS_VERSION_PATCH 1
2222

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

faiss/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"""
110110
setup(
111111
name="faiss",
112-
version="1.13.0",
112+
version="1.13.1",
113113
description="A library for efficient similarity search and clustering of dense vectors",
114114
long_description=long_description,
115115
long_description_content_type="text/plain",

0 commit comments

Comments
 (0)