-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support filter and nested field in faiss engine radial search (#1652)…
… (#1658) * Use 0.95 as default ratio for lucene radial search traversal similarity (#1619) Signed-off-by: Junqiu Lei <junqiu@amazon.com>
- Loading branch information
1 parent
6a77cfc
commit 0366620
Showing
20 changed files
with
653 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
jni/patches/faiss/0003-Custom-patch-to-support-range-search-params.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
From af6770b505a32b2c4eab2036d2509dec4b137f28 Mon Sep 17 00:00:00 2001 | ||
From: Junqiu Lei <junqiu@amazon.com> | ||
Date: Tue, 23 Apr 2024 17:18:56 -0700 | ||
Subject: [PATCH] Custom patch to support range search params | ||
|
||
Signed-off-by: Junqiu Lei <junqiu@amazon.com> | ||
--- | ||
faiss/IndexIDMap.cpp | 28 ++++++++++++++++++++++++---- | ||
1 file changed, 24 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/faiss/IndexIDMap.cpp b/faiss/IndexIDMap.cpp | ||
index 3f375e7b..11f3a847 100644 | ||
--- a/faiss/IndexIDMap.cpp | ||
+++ b/faiss/IndexIDMap.cpp | ||
@@ -176,11 +176,31 @@ void IndexIDMapTemplate<IndexT>::range_search( | ||
RangeSearchResult* result, | ||
const SearchParameters* params) const { | ||
if (params) { | ||
- SearchParameters internal_search_parameters; | ||
- IDSelectorTranslated id_selector_translated(id_map, params->sel); | ||
- internal_search_parameters.sel = &id_selector_translated; | ||
+ IDSelectorTranslated this_idtrans(this->id_map, nullptr); | ||
+ ScopedSelChange sel_change; | ||
+ IDGrouperTranslated this_idgrptrans(this->id_map, nullptr); | ||
+ ScopedGrpChange grp_change; | ||
+ | ||
+ if (params->sel) { | ||
+ auto idtrans = dynamic_cast<const IDSelectorTranslated*>(params->sel); | ||
+ | ||
+ if (!idtrans) { | ||
+ auto params_non_const = const_cast<SearchParameters*>(params); | ||
+ this_idtrans.sel = params->sel; | ||
+ sel_change.set(params_non_const, &this_idtrans); | ||
+ } | ||
+ } | ||
+ | ||
+ if (params->grp) { | ||
+ auto idtrans = dynamic_cast<const IDGrouperTranslated*>(params->grp); | ||
|
||
- index->range_search(n, x, radius, result, &internal_search_parameters); | ||
+ if (!idtrans) { | ||
+ auto params_non_const = const_cast<SearchParameters*>(params); | ||
+ this_idgrptrans.grp = params->grp; | ||
+ grp_change.set(params_non_const, &this_idgrptrans); | ||
+ } | ||
+ } | ||
+ index->range_search(n, x, radius, result, params); | ||
} else { | ||
index->range_search(n, x, radius, result); | ||
} | ||
-- | ||
2.39.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.