@@ -9,7 +9,34 @@ We try to indicate most contributions here with the contributor names who are no
9
9
the Facebook Faiss team. Feel free to add entries here if you submit a PR.
10
10
11
11
## [ Unreleased]
12
- - Support for range search in HNSW and Fast scan IVF.
12
+
13
+ ## [ 1.8.0] - 2024-02-27
14
+ ### Added
15
+ - Added a new conda package faiss-gpu-raft alongside faiss-cpu and faiss-gpu
16
+ - Integrated IVF-Flat and IVF-PQ implementations in faiss-gpu-raft from RAFT by Nvidia [ thanks Corey Nolet and Tarang Jain]
17
+ - Added a context parameter to InvertedLists and InvertedListsIterator
18
+ - Added Faiss on Rocksdb demo to showing how inverted lists can be persisted in a key-value store
19
+ - Introduced Offline IVF framework powered by Faiss big batch search
20
+ - Added SIMD NEON Optimization for QT_FP16 in Scalar Quantizer. [ thanks Naveen Tatikonda]
21
+ - Generalized ResultHandler and supported range search for HNSW and FastScan
22
+ - Introduced avx512 optimization mode and FAISS_OPT_LEVEL env variable [ thanks Alexandr Ghuzva]
23
+ - Added search parameters for IndexRefine::search() and IndexRefineFlat::search()
24
+ - Supported large two-level clustering
25
+ - Added support for Python 3.11 and 3.12
26
+ - Added support for CUDA 12
27
+
28
+ ### Changed
29
+ - Used the benchmark to find Pareto optimal indices. Intentionally limited to IVF(Flat|HNSW),PQ|SQ indices
30
+ - Splitted off RQ encoding steps to another file
31
+ - Supported better NaN handling
32
+ - HNSW speedup + Distance 4 points [ thanks Alexandr Ghuzva]
33
+
34
+ ### Fixed
35
+ - Fixed DeviceVector reallocations in Faiss GPU
36
+ - Used efSearch from params if provided in HNSW search
37
+ - Fixed warp synchronous behavior in Faiss GPU CUDA 12
38
+
39
+
13
40
## [ 1.7.4] - 2023-04-12
14
41
### Added
15
42
- Added big batch IVF search for conducting efficient search with big batches of queries
@@ -259,7 +286,8 @@ by conda install -c pytorch faiss-gpu cudatoolkit=10.0.
259
286
- C bindings.
260
287
- Extended tutorial to GPU indices.
261
288
262
- [ Unreleased ] : https://github.com/facebookresearch/faiss/compare/v1.7.4...HEAD
289
+ [ Unreleased ] : https://github.com/facebookresearch/faiss/compare/v1.8.0...HEAD
290
+ [ 1.8.0 ] : https://github.com/facebookresearch/faiss/compare/v1.7.4...v1.8.0
263
291
[ 1.7.4 ] : https://github.com/facebookresearch/faiss/compare/v1.7.3...v1.7.4
264
292
[ 1.7.3 ] : https://github.com/facebookresearch/faiss/compare/v1.7.2...v1.7.3
265
293
[ 1.7.2 ] : https://github.com/facebookresearch/faiss/compare/v1.7.1...v1.7.2
0 commit comments