Prepare for v1.7.3 release (#2560)

Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2560

Reviewed By: mdouze

Differential Revision: D40947377

Pulled By: mlomeli1

fbshipit-source-id: b7c6f0ea85b5c3b2005e96af3d504edd137e42fc
pull/2562/head
Maria 2022-11-04 09:48:11 -07:00 committed by Facebook GitHub Bot
parent f81097c6e6
commit 02ef6b6c09
4 changed files with 6 additions and 3 deletions

View File

@ -10,6 +10,8 @@ the Facebook Faiss team. Feel free to add entries here if you submit a PR.
## [Unreleased] ## [Unreleased]
## [1.7.3] - 2022-11-3
### Added
- Added sparse k-means routines and moved the generic kmeans to contrib - Added sparse k-means routines and moved the generic kmeans to contrib
- Added FlatDistanceComputer for all FlatCodes indexes - Added FlatDistanceComputer for all FlatCodes indexes
- Support for fast accumulation of 4-bit LSQ and RQ - Support for fast accumulation of 4-bit LSQ and RQ
@ -213,6 +215,7 @@ by conda install -c pytorch faiss-gpu cudatoolkit=10.0.
- Extended tutorial to GPU indices. - Extended tutorial to GPU indices.
[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.2...HEAD [Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.2...HEAD
[1.7.3]: https://github.com/facebookresearch/faiss/compare/v1.7.2...v1.7.3
[1.7.2]: https://github.com/facebookresearch/faiss/compare/v1.7.1...v1.7.2 [1.7.2]: https://github.com/facebookresearch/faiss/compare/v1.7.1...v1.7.2
[1.7.1]: https://github.com/facebookresearch/faiss/compare/v1.7.0...v1.7.1 [1.7.1]: https://github.com/facebookresearch/faiss/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/facebookresearch/faiss/compare/v1.6.5...v1.7.0 [1.7.0]: https://github.com/facebookresearch/faiss/compare/v1.6.5...v1.7.0

View File

@ -7,7 +7,7 @@
cmake_minimum_required(VERSION 3.17 FATAL_ERROR) cmake_minimum_required(VERSION 3.17 FATAL_ERROR)
project(faiss project(faiss
VERSION 1.7.2 VERSION 1.7.3
DESCRIPTION "A library for efficient similarity search and clustering of dense vectors." DESCRIPTION "A library for efficient similarity search and clustering of dense vectors."
HOMEPAGE_URL "https://github.com/facebookresearch/faiss" HOMEPAGE_URL "https://github.com/facebookresearch/faiss"
LANGUAGES CXX) LANGUAGES CXX)

View File

@ -18,7 +18,7 @@
#define FAISS_VERSION_MAJOR 1 #define FAISS_VERSION_MAJOR 1
#define FAISS_VERSION_MINOR 7 #define FAISS_VERSION_MINOR 7
#define FAISS_VERSION_PATCH 2 #define FAISS_VERSION_PATCH 3
/** /**
* @namespace faiss * @namespace faiss

View File

@ -53,7 +53,7 @@ are implemented on the GPU. It is developed by Facebook AI Research.
""" """
setup( setup(
name='faiss', name='faiss',
version='1.7.2', version='1.7.3',
description='A library for efficient similarity search and clustering of dense vectors', description='A library for efficient similarity search and clustering of dense vectors',
long_description=long_description, long_description=long_description,
url='https://github.com/facebookresearch/faiss', url='https://github.com/facebookresearch/faiss',