1 unstable release

Uses old Rust 2015

0.8.1 Mar 11, 2024

#311 in Operating systems

Download history 277/week @ 2024-07-22 149/week @ 2024-07-29 169/week @ 2024-08-05 205/week @ 2024-08-12 111/week @ 2024-08-19 128/week @ 2024-08-26 146/week @ 2024-09-02 152/week @ 2024-09-09 111/week @ 2024-09-16 151/week @ 2024-09-23 77/week @ 2024-09-30 118/week @ 2024-10-07 82/week @ 2024-10-14 77/week @ 2024-10-21 99/week @ 2024-10-28 41/week @ 2024-11-04

302 downloads per month
Used in 6 crates (via cpu-utils)

MIT/Apache

24KB
531 lines

core_affinity_rs is a Rust crate for managing CPU affinities. It currently supports Linux, Mac OSX, and Windows.

Documentation

Linux Status Build status

Example

This example shows how create a thread for each available processor and pin each thread to its corresponding processor.

extern crate core_affinity;

use std::thread;

// Retrieve the IDs of all cores on which the current
// thread is allowed to run.
// NOTE: If you want ALL the possible cores, you should
// use num_cpus.
let core_ids = core_affinity::get_core_ids().unwrap();

// Create a thread for each active CPU core.
let handles = core_ids.into_iter().map(|id| {
    thread::spawn(move || {
        // Pin this thread to a single CPU core.
        let res = core_affinity::set_for_current(id);
        if (res) {
          // Do more work after this.
        }
    })
}).collect::<Vec<_>>();

for handle in handles.into_iter() {
    handle.join().unwrap();
}

Platforms

core_affinity_rs should work on Linux, Windows, Mac OSX, FreeBSD, and Android.

core_affinity_rs is continuously tested on:

  • x86_64-unknown-linux-gnu (Linux)
  • i686-unknown-linux-gnu
  • x86_64-unknown-linux-musl (Linux w/ MUSL)
  • i686-unknown-linux-musl
  • x86_64-apple-darwin (Mac OSX)
  • i686-apple-darwin
  • x86_64-pc-windows-msvc (Windows)
  • i686-pc-windows-msvc
  • x86_64-pc-windows-gnu
  • i686-pc-windows-gnu

core_affinity_rs is continuously cross-compiled for:

  • arm-unknown-linux-gnueabihf
  • aarch64-unknown-linux-gnu
  • mips-unknown-linux-gnu
  • aarch64-unknown-linux-musl
  • i686-linux-android
  • x86_64-linux-android
  • arm-linux-androideabi
  • aarch64-linux-android

Dependencies

~28–255KB