Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix initial frequency set
  • Loading branch information
filippor committed Nov 17, 2025
commit 09c86f337787056b76a7c2471ddab1350de95096
7 changes: 0 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ edition = "2024"
[dependencies]
libdrm_amdgpu_sys = "0.8.8"
toml = "0.9.5"
watch = "0.2.3"
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {

let mut curr_freq: u16 = gpu.reader.min_freq;
let mut target_freq = gpu.reader.min_freq;
gpu.writer.change_freq(target_freq)?;
let mut max_freq = gpu.reader.max_freq;

let mut last_finetune = Instant::now();
Expand Down