ea767376bd
Replaces the global Rayon pool with per-NUMA-node thread pools that pin worker threads to their respective nodes, leveraging Linux first-touch allocation to reduce cross-NUMA memory contention and improve cache locality. Integrates the `hwlocality` crate with a vendored build, includes graceful fallbacks for single-socket or non-Linux systems, and updates dependency constraints. Also adds installation and architecture documentation, and corrects parallelism detection in the partitioner.
21 lines
646 B
TOML
21 lines
646 B
TOML
[package]
|
|
name = "obikindex"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikseq = { path = "../obikseq" }
|
|
obikpartitionner = { path = "../obikpartitionner" }
|
|
obiskio = { path = "../obiskio" }
|
|
obisys = { path = "../obisys" }
|
|
obicompactvec = { path = "../obicompactvec" }
|
|
obilayeredmap = { path = "../obilayeredmap" }
|
|
ndarray = "0.16"
|
|
rayon = "1"
|
|
crossbeam-channel = "0.5"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
indicatif = "0.17"
|
|
tracing = "0.1.44"
|
|
hwlocality = { version = "1.0.0-alpha.11", features = ["vendored"] }
|