Skip to content

jbrummack/create_index

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Testbench for supporting Rust concurrency with USearch. Concurrent Index creation led to a ~10x shorter Index creation time using Rayon.

lines.flatten().enumerate().par_bridge().for_each(|(a, b)| { ... }) //Indexing 7177947 192-vectors takes 9 minutes
lines.flatten().enumerate().for_each(|(a, b)| { ... }) //Indexing 7177947 192-vectors takes 96 minutes

About

Creates an HNSW Index from a CSV file, shows usearch concurrency in Rust.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages