#thread-affinity #core-affinity #process #thread #api-bindings #core

affinity

Provides a consistent way to set core affinity for currently running threads and processes

3 releases

0.1.2 Oct 16, 2021
0.1.1 Apr 3, 2020
0.1.0 Apr 3, 2020

#460 in Unix APIs

Download history 3322/week @ 2024-12-09 2751/week @ 2024-12-16 999/week @ 2024-12-23 1075/week @ 2024-12-30 3429/week @ 2025-01-06 2453/week @ 2025-01-13 8264/week @ 2025-01-20 12564/week @ 2025-01-27 16389/week @ 2025-02-03 13686/week @ 2025-02-10 6685/week @ 2025-02-17 10710/week @ 2025-02-24 12747/week @ 2025-03-03 14638/week @ 2025-03-10 11920/week @ 2025-03-17 13356/week @ 2025-03-24

53,108 downloads per month
Used in 11 crates (6 directly)

MIT/Apache

13KB
211 lines

Affinity

Build Status crates.io mio Lines of Code

This crate provides a consistent way to set core affinity for currently running threads and processes.

Usage

use affinity::*;
fn bind_even_cores() {
    // Select every second core
    let cores: Vec<usize> = (0..get_core_num()).step_by(2).collect();
    println!("Binding thread to cores : {:?}", &cores);
    // Output : "Binding thread to cores : [0, 2, 4, 6]"
    
    set_thread_affinity(&cores).unwrap();
    println!("Current thread affinity : {:?}", get_thread_affinity().unwrap());
    // Output : "Current thread affinity : [0, 2, 4, 6]"
}

Complete example here.

Features

  • Bind to multiple cores
  • Return list of currently bound cores
  • Reliably get number of cores (uses num_cpus)
  • Allow caller to handle errors
  • Supports affinity inheritance for new child processes on Windows (through set_process_affinity())

Platforms

Currently only tested on :

  • Windows
  • Linux (Arch x64)

License

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0–6.5MB
~33K SLoC