Go to file
ddidderr 04f017aeed
[release] cpufreq v1.0.0
A simple tool to show the current average CPU frequency across all
CPU cores. Can be given the argument `-a` to show frequency for each
individual core.
2024-05-06 11:41:55 +02:00
src [release] cpufreq v1.0.0 2024-05-06 11:41:55 +02:00
.gitignore [release] cpufreq v1.0.0 2024-05-06 11:41:55 +02:00
Cargo.lock [release] cpufreq v1.0.0 2024-05-06 11:41:55 +02:00
Cargo.toml [release] cpufreq v1.0.0 2024-05-06 11:41:55 +02:00
README.md [release] cpufreq v1.0.0 2024-05-06 11:41:55 +02:00
rustfmt.toml [release] cpufreq v1.0.0 2024-05-06 11:41:55 +02:00

cpufreq

About

Features

A simple tool to show the current average CPU frequency across all CPU cores. Can be given the argument -a to show frequency for each individual core (cores sorted according to their number in the kernel).

Usage

cpufreq [-a]

Design goal

The goal was to create

  • a minimal Linux program with no dependencies
  • that runs on any x86_64 system without the need for a specific C library version to be present
  • and is very fast (takes less than 1ms as of v1.0)

Platform support

This program is linux only. There are no plans to change that.