Spaces:
Build error
Build error
File size: 731 Bytes
84d2a97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
use common::defaults::thread_count_for_hnsw;
mod build_cache;
pub mod build_condition_checker;
mod config;
mod entry_points;
pub mod graph_layers;
pub mod graph_layers_builder;
pub mod graph_links;
pub mod hnsw;
pub mod point_scorer;
mod search_context;
#[cfg(test)]
mod tests;
/// Number of threads to use with rayon for HNSW index building.
///
/// Uses [`thread_count_for_hnsw`] heuristic but accepts a `max_indexing_threads` parameter to
/// allow configuring this.
pub fn num_rayon_threads(max_indexing_threads: usize) -> usize {
if max_indexing_threads == 0 {
let num_cpu = common::cpu::get_num_cpus();
num_cpu.clamp(1, thread_count_for_hnsw(num_cpu))
} else {
max_indexing_threads
}
}
|