Prepare for release v1.7.1. (#1915)

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

Reviewed By: mdouze

Differential Revision: D28749880

Pulled By: beauby

fbshipit-source-id: 4dcb0a5eac8f84d26570a0fb6f3e357bc2f1151c
pull/1884/head^2 v1.7.1
Lucas Hosseini 2021-05-27 10:48:53 -07:00 committed by Facebook GitHub Bot
parent a7d62b39b4
commit cff072b78e
5 changed files with 10 additions and 5 deletions

View File

@ -9,6 +9,8 @@ We try to indicate most contributions here with the contributor names who are no
the Facebook Faiss team. Feel free to add entries here if you submit a PR.
## [Unreleased]
## [1.7.1] - 2021-05-27
### Added
- Support for building C bindings through the `FAISS_ENABLE_C_API` CMake option.
- Serializing the indexes with the python pickle module
@ -199,7 +201,8 @@ by conda install -c pytorch faiss-gpu cudatoolkit=10.0.
- C bindings.
- Extended tutorial to GPU indices.
[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.0...HEAD
[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.1...HEAD
[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.6.5]: https://github.com/facebookresearch/faiss/compare/v1.6.4...v1.6.5
[1.6.4]: https://github.com/facebookresearch/faiss/compare/v1.6.3...v1.6.4

View File

@ -42,7 +42,8 @@ outputs:
- mkl =2018
- cudatoolkit {{ cudatoolkit }}
run:
- mkl >=2018
- mkl >=2018 # [not win]
- mkl >=2018,<2021 # [win]
- {{ pin_compatible('cudatoolkit', max_pin='x.x') }}
test:
commands:

View File

@ -40,7 +40,8 @@ outputs:
host:
- mkl =2018
run:
- mkl >=2018
- mkl >=2018 # [not win]
- mkl >=2018,<2021 # [win]
test:
commands:
- test -f $PREFIX/lib/libfaiss$SHLIB_EXT # [not win]

View File

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

View File

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