3 unstable releases
0.3.2 |
|
---|---|
0.3.1 |
|
0.2.1 | Sep 21, 2024 |
0.2.0 | Aug 8, 2024 |
0.1.0 | Aug 8, 2024 |
366 downloads per month
14KB
283 lines
This is only specialized for reading Cpu Instructions, not a complete package of perf_event_open
Permission requirements ⚠ : Make sure the program has ROOT permissions
lib.rs
:
This is only for reading CpuInstructionNumber
specialization, not a complete package of perf_event_read
Example:
use std::{fs, time::{Duration, Instant}, thread};
use cpu_instructions_reader::{InstructionNumber, InstructionNumberReader, InstructionNumberInstant};
let reader = InstructionNumberReader::new().unwrap();
let record_1 = reader.instant(0).unwrap();
thread::sleep(Duration::from_secs(1));
let record_2 = reader.instant(0).unwrap();
let instructions = record_2 - record_1;
println!("{instructions}");
Dependencies
~0.3–1.1MB
~24K SLoC