File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ if(FAISS_ENABLE_CUVS)
4747endif ()
4848
4949project (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} )
Original file line number Diff line number Diff 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)
4040conda install -c pytorch -c rapidsai -c rapidsai-nightly -c conda-forge -c nvidia pytorch/label/nightly::faiss-gpu-cuvs ' cuda-version=12.6'
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 109109"""
110110setup (
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" ,
You can’t perform that action at this time.
0 commit comments