Skip to content

Commit a45e63f

Browse files
authored
Relax max duplicates in batched NN Descent (#770)
As discussed, relaxing max duplicates for batch NN Descent for now to not block other PRs. Related issue - #771 Authors: - Jinsol Park (https://github.com/jinsolp) Approvers: - Divye Gala (https://github.com/divyegala) URL: #770
1 parent bd6d4a9 commit a45e63f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpp/tests/neighbors/ann_nn_descent.cuh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,8 @@ class AnnNNDescentBatchTest : public ::testing::TestWithParam<AnnNNDescentBatchI
287287
ps.graph_degree,
288288
0.01,
289289
min_recall,
290-
true));
290+
true,
291+
static_cast<size_t>(ps.graph_degree)));
291292
}
292293
}
293294

0 commit comments

Comments
 (0)