We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34bda09 commit 441481eCopy full SHA for 441481e
jvector-base/src/main/java/io/github/jbellis/jvector/graph/similarity/BuildScoreProvider.java
@@ -138,6 +138,7 @@ public SearchScoreProvider diversityProviderFor(int node1) {
138
* with reranking performed using RandomAccessVectorValues (which is intended to be
139
* InlineVectorValues for building incrementally, but should technically
140
* work with any RAVV implementation).
141
+ * This class is not thread safe, we should never its results to another thread.
142
*/
143
static BuildScoreProvider pqBuildScoreProvider(VectorSimilarityFunction vsf, PQVectors pqv) {
144
int dimension = pqv.getOriginalSize() / Float.BYTES;
0 commit comments