Fix memory clock quirks #162
This commit is contained in:
parent
ec02a65571
commit
cb2fd1dcc7
2 changed files with 4 additions and 1 deletions
|
@ -82,6 +82,7 @@ impl GenericGpuLimit {
|
|||
extras: super::LimitExtras {
|
||||
experiments: false,
|
||||
quirks: vec![
|
||||
"pp_dpm_fclk-reversed".to_owned(),
|
||||
"pp_dpm_fclk-static".to_owned(),
|
||||
].into_iter().collect(),
|
||||
}
|
||||
|
@ -93,6 +94,7 @@ impl GenericGpuLimit {
|
|||
sd.memory_clock_step = Some(200);
|
||||
sd.extras.quirks.insert("clock-autodetect".to_owned());
|
||||
sd.extras.quirks.remove("pp_dpm_fclk-static");
|
||||
sd.extras.quirks.remove("pp_dpm_fclk-reversed");
|
||||
sd
|
||||
}
|
||||
|
||||
|
|
|
@ -602,7 +602,8 @@
|
|||
"extras": {
|
||||
"experiments": false,
|
||||
"quirks": [
|
||||
"pp_dpm_fclk-static"
|
||||
"pp_dpm_fclk-static",
|
||||
"pp_dpm_fclk-reversed"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue