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
|
## TEST
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
code_quality:
|
# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156178573
|
||||||
stage: test
|
# code_quality:
|
||||||
only:
|
# stage: test
|
||||||
- branches
|
# only:
|
||||||
- schedules@ryzen-controller-team/ryzen-controller
|
# - branches
|
||||||
except: []
|
# - schedules@ryzen-controller-team/ryzen-controller
|
||||||
|
# except: []
|
||||||
|
|
||||||
dependency_scanning:
|
# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156177371
|
||||||
stage: test
|
# dependency_scanning:
|
||||||
only:
|
# stage: test
|
||||||
- branches
|
# only:
|
||||||
- schedules@ryzen-controller-team/ryzen-controller
|
# - branches
|
||||||
except: []
|
# - schedules@ryzen-controller-team/ryzen-controller
|
||||||
|
# except: []
|
||||||
|
|
||||||
sast:
|
# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156178280
|
||||||
stage: test
|
# sast:
|
||||||
only:
|
# stage: test
|
||||||
- branches
|
# only:
|
||||||
- schedules@ryzen-controller-team/ryzen-controller
|
# - branches
|
||||||
except: []
|
# - schedules@ryzen-controller-team/ryzen-controller
|
||||||
|
# except: []
|
||||||
|
|
||||||
release-check:
|
release-check:
|
||||||
tags: [ docker ]
|
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.
|
- Set the path to your freshly builded `ryzenadj` binary into the "settings" tab.
|
||||||
- Enjoy!
|
- 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
|
## Troubleshoot, Q&A
|
||||||
|
|
||||||
> I'm getting an error when installing ryzen controller on linux
|
> 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,
|
step: 1,
|
||||||
default: 900,
|
default: 900,
|
||||||
ryzenadj_arg: "--slow-time=",
|
ryzenadj_arg: "--slow-time=",
|
||||||
ryzenadj_value_convert: "toThousand",
|
ryzenadj_value_convert: null,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
description: getTranslation(
|
description: getTranslation(
|
||||||
@ -39,7 +39,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
label: getTranslation("ryzenAdj.vrmmaxCurrent.label", "VRM Current (A)"),
|
label: getTranslation("ryzenAdj.vrmmaxCurrent.label", "VRM Current (A)"),
|
||||||
tab: "power",
|
tab: "power",
|
||||||
min: 20,
|
min: 20,
|
||||||
max: 75,
|
max: 90,
|
||||||
step: 1,
|
step: 1,
|
||||||
default: 30,
|
default: 30,
|
||||||
ryzenadj_arg: "--vrmmax-current=",
|
ryzenadj_arg: "--vrmmax-current=",
|
||||||
@ -81,7 +81,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
label: getTranslation("ryzenAdj.minFclkFrequency.label", "Minimum Infinity Fabric frequency (Mhz)"),
|
label: getTranslation("ryzenAdj.minFclkFrequency.label", "Minimum Infinity Fabric frequency (Mhz)"),
|
||||||
tab: "gpu",
|
tab: "gpu",
|
||||||
min: 800,
|
min: 800,
|
||||||
max: 1600,
|
max: 1900,
|
||||||
step: 1,
|
step: 1,
|
||||||
default: 800,
|
default: 800,
|
||||||
ryzenadj_arg: "--min-fclk-frequency=",
|
ryzenadj_arg: "--min-fclk-frequency=",
|
||||||
@ -95,7 +95,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
label: getTranslation("ryzenAdj.maxFclkFrequency.label", "Maximum Infinity Fabric frequency (Mhz)"),
|
label: getTranslation("ryzenAdj.maxFclkFrequency.label", "Maximum Infinity Fabric frequency (Mhz)"),
|
||||||
tab: "gpu",
|
tab: "gpu",
|
||||||
min: 800,
|
min: 800,
|
||||||
max: 1600,
|
max: 1900,
|
||||||
step: 1,
|
step: 1,
|
||||||
default: 1200,
|
default: 1200,
|
||||||
ryzenadj_arg: "--max-fclk-frequency=",
|
ryzenadj_arg: "--max-fclk-frequency=",
|
||||||
@ -120,7 +120,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
label: getTranslation("ryzenAdj.stapmLimit.label", "CPU TDP (W)"),
|
label: getTranslation("ryzenAdj.stapmLimit.label", "CPU TDP (W)"),
|
||||||
tab: "cpu",
|
tab: "cpu",
|
||||||
min: 5,
|
min: 5,
|
||||||
max: 60,
|
max: 100,
|
||||||
step: 1,
|
step: 1,
|
||||||
default: 20,
|
default: 20,
|
||||||
ryzenadj_arg: "--stapm-limit=",
|
ryzenadj_arg: "--stapm-limit=",
|
||||||
@ -138,7 +138,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
step: 1,
|
step: 1,
|
||||||
default: 900,
|
default: 900,
|
||||||
ryzenadj_arg: "--stapm-time=",
|
ryzenadj_arg: "--stapm-time=",
|
||||||
ryzenadj_value_convert: "toThousand",
|
ryzenadj_value_convert: null,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
description: getTranslation(
|
description: getTranslation(
|
||||||
@ -148,7 +148,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
label: getTranslation("ryzenAdj.fastLimit.label", "CPU Boost TDP (W)"),
|
label: getTranslation("ryzenAdj.fastLimit.label", "CPU Boost TDP (W)"),
|
||||||
tab: "cpu",
|
tab: "cpu",
|
||||||
min: 5,
|
min: 5,
|
||||||
max: 60,
|
max: 100,
|
||||||
step: 1,
|
step: 1,
|
||||||
default: 25,
|
default: 25,
|
||||||
ryzenadj_arg: "--fast-limit=",
|
ryzenadj_arg: "--fast-limit=",
|
||||||
@ -162,7 +162,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
|||||||
label: getTranslation("ryzenAdj.slowLimit.label", "CPU Min TDP (W)"),
|
label: getTranslation("ryzenAdj.slowLimit.label", "CPU Min TDP (W)"),
|
||||||
tab: "cpu",
|
tab: "cpu",
|
||||||
min: 5,
|
min: 5,
|
||||||
max: 60,
|
max: 100,
|
||||||
step: 1,
|
step: 1,
|
||||||
default: 10,
|
default: 10,
|
||||||
ryzenadj_arg: "--slow-limit=",
|
ryzenadj_arg: "--slow-limit=",
|
||||||
|
Loading…
Reference in New Issue
Block a user