forked from opensearch-project/k-NN
-
Notifications
You must be signed in to change notification settings - Fork 0
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
- Loading branch information
1 parent
c35f6ad
commit 2ef171e
Showing
15 changed files
with
596 additions
and
132 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
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 <[email protected]> | ||
Date: Tue, 23 Apr 2024 17:18:56 -0700 | ||
Subject: [PATCH] Custom patch to support range search params | ||
|
||
Signed-off-by: Junqiu Lei <[email protected]> | ||
--- | ||
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.