Skip to content

Commit

Permalink
Increase size of euclidean test
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinMendelGleason committed Apr 26, 2024
1 parent 3dfde46 commit 7974be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parallel-hnsw/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2483,7 +2483,7 @@ mod tests {
#[test]
fn test_euclidean() {
let mut prng = StdRng::seed_from_u64(42);
let size = 100_000;
let size = 1_000_000;
let vecs: Vec<Vec<f32>> = (0..size).map(move |_| random_vec(&mut prng, 32)).collect();
let cc = Comparator32 { data: vecs.into() };
let vids: Vec<VectorId> = (0..size).map(VectorId).collect();
Expand Down

0 comments on commit 7974be4

Please sign in to comment.