Skip to content

Commit

Permalink
Bug in benchmark warmup was fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Nov 6, 2023
1 parent 4b55d95 commit 484477a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static void main(String[] args) {
client.findNearestNeighbours(indexName, vector, 1);

if ((j + 1) % 1_000 == 0) {
System.out.printf("%d vectors are processed out of %d%n", j + 1, vectors.length);
System.out.printf("%d vectors are processed out of %d%n", j + 1, queryVectors.length);
}
}
}
Expand Down

0 comments on commit 484477a

Please sign in to comment.