Skip to content

Commit

Permalink
Removes cout statements from faiss_wrapper.cpp
Browse files Browse the repository at this point in the history
Signed-off-by: Tejas Shah <[email protected]>
  • Loading branch information
shatejas committed Jun 5, 2024
1 parent b299c40 commit 13161e1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions jni/src/faiss_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ jobjectArray knn_jni::faiss_wrapper::QueryIndex_WithFilter(knn_jni::JNIUtilInter
if(hnswReader) {
// Query param efsearch supersedes ef_search provided during index setting.
hnswParams.efSearch = getQueryEfSearch(env, jniUtil, methodParams, hnswReader->hnsw.efSearch);
std::cout << "efSearch" << hnswParams.efSearch;
hnswParams.sel = idSelector.get();
if (parentIdsJ != nullptr) {
idGrouper = buildIDGrouperBitmap(jniUtil, env, parentIdsJ, &idGrouperBitmap);
Expand Down Expand Up @@ -382,7 +381,6 @@ jobjectArray knn_jni::faiss_wrapper::QueryIndex_WithFilter(knn_jni::JNIUtilInter
if(hnswReader!= nullptr) {
// Query param efseatch supersedes ef_search provided during index setting.
hnswParams.efSearch = getQueryEfSearch(env, jniUtil, methodParams, hnswReader->hnsw.efSearch);
std::cout << "efSearch" << hnswParams.efSearch;
if (parentIdsJ != nullptr) {
idGrouper = buildIDGrouperBitmap(jniUtil, env, parentIdsJ, &idGrouperBitmap);
hnswParams.grp = idGrouper.get();
Expand Down

0 comments on commit 13161e1

Please sign in to comment.