mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 10:03:28 +07:00
fix: Support for Renoir APUs.
Updated restrictions for Renoir APUs, updated ryzenadj.exe.
This commit is contained in:
parent
6581c13641
commit
40c842c2c5
@ -15,26 +15,29 @@ stages:
|
||||
## TEST
|
||||
###############################################################################
|
||||
|
||||
code_quality:
|
||||
stage: test
|
||||
only:
|
||||
- branches
|
||||
- schedules@ryzen-controller-team/ryzen-controller
|
||||
except: []
|
||||
# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156178573
|
||||
# code_quality:
|
||||
# stage: test
|
||||
# only:
|
||||
# - branches
|
||||
# - schedules@ryzen-controller-team/ryzen-controller
|
||||
# except: []
|
||||
|
||||
dependency_scanning:
|
||||
stage: test
|
||||
only:
|
||||
- branches
|
||||
- schedules@ryzen-controller-team/ryzen-controller
|
||||
except: []
|
||||
# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156177371
|
||||
# dependency_scanning:
|
||||
# stage: test
|
||||
# only:
|
||||
# - branches
|
||||
# - schedules@ryzen-controller-team/ryzen-controller
|
||||
# except: []
|
||||
|
||||
sast:
|
||||
stage: test
|
||||
only:
|
||||
- branches
|
||||
- schedules@ryzen-controller-team/ryzen-controller
|
||||
except: []
|
||||
# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156178280
|
||||
# sast:
|
||||
# stage: test
|
||||
# only:
|
||||
# - branches
|
||||
# - schedules@ryzen-controller-team/ryzen-controller
|
||||
# except: []
|
||||
|
||||
release-check:
|
||||
tags: [ docker ]
|
||||
|
@ -52,6 +52,9 @@ Thanks to https://github.com/FlyGoat/RyzenAdj and his author, ryzenadj.exe is in
|
||||
- Set the path to your freshly builded `ryzenadj` binary into the "settings" tab.
|
||||
- Enjoy!
|
||||
|
||||
### Caution!
|
||||
- Ryzen Controller Team is not liable for any damages that my occur from using Ryzen Controller or RyzenADJ, Please use at your own risk!
|
||||
|
||||
## Troubleshoot, Q&A
|
||||
|
||||
> I'm getting an error when installing ryzen controller on linux
|
||||
|
Binary file not shown.
Binary file not shown.
@ -15,7 +15,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
step: 1,
|
||||
default: 900,
|
||||
ryzenadj_arg: "--slow-time=",
|
||||
ryzenadj_value_convert: "toThousand",
|
||||
ryzenadj_value_convert: null,
|
||||
},
|
||||
{
|
||||
description: getTranslation(
|
||||
@ -39,7 +39,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
label: getTranslation("ryzenAdj.vrmmaxCurrent.label", "VRM Current (A)"),
|
||||
tab: "power",
|
||||
min: 20,
|
||||
max: 75,
|
||||
max: 90,
|
||||
step: 1,
|
||||
default: 30,
|
||||
ryzenadj_arg: "--vrmmax-current=",
|
||||
@ -81,7 +81,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
label: getTranslation("ryzenAdj.minFclkFrequency.label", "Minimum Infinity Fabric frequency (Mhz)"),
|
||||
tab: "gpu",
|
||||
min: 800,
|
||||
max: 1600,
|
||||
max: 1900,
|
||||
step: 1,
|
||||
default: 800,
|
||||
ryzenadj_arg: "--min-fclk-frequency=",
|
||||
@ -95,7 +95,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
label: getTranslation("ryzenAdj.maxFclkFrequency.label", "Maximum Infinity Fabric frequency (Mhz)"),
|
||||
tab: "gpu",
|
||||
min: 800,
|
||||
max: 1600,
|
||||
max: 1900,
|
||||
step: 1,
|
||||
default: 1200,
|
||||
ryzenadj_arg: "--max-fclk-frequency=",
|
||||
@ -120,7 +120,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
label: getTranslation("ryzenAdj.stapmLimit.label", "CPU TDP (W)"),
|
||||
tab: "cpu",
|
||||
min: 5,
|
||||
max: 60,
|
||||
max: 100,
|
||||
step: 1,
|
||||
default: 20,
|
||||
ryzenadj_arg: "--stapm-limit=",
|
||||
@ -138,7 +138,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
step: 1,
|
||||
default: 900,
|
||||
ryzenadj_arg: "--stapm-time=",
|
||||
ryzenadj_value_convert: "toThousand",
|
||||
ryzenadj_value_convert: null,
|
||||
},
|
||||
{
|
||||
description: getTranslation(
|
||||
@ -148,7 +148,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
label: getTranslation("ryzenAdj.fastLimit.label", "CPU Boost TDP (W)"),
|
||||
tab: "cpu",
|
||||
min: 5,
|
||||
max: 60,
|
||||
max: 100,
|
||||
step: 1,
|
||||
default: 25,
|
||||
ryzenadj_arg: "--fast-limit=",
|
||||
@ -162,7 +162,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
label: getTranslation("ryzenAdj.slowLimit.label", "CPU Min TDP (W)"),
|
||||
tab: "cpu",
|
||||
min: 5,
|
||||
max: 60,
|
||||
max: 100,
|
||||
step: 1,
|
||||
default: 10,
|
||||
ryzenadj_arg: "--slow-limit=",
|
||||
|
Loading…
Reference in New Issue
Block a user