From a49f1f515ef5e8a878b969ee037c91bd52362bc7 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 14 Oct 2021 01:36:28 +0000 Subject: [PATCH] Add a gear for "maximum performance, maximum power (usage)" --- Code/A06/devterm-a06-gearbox | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Code/A06/devterm-a06-gearbox b/Code/A06/devterm-a06-gearbox index 6aa2a19..ed36393 100755 --- a/Code/A06/devterm-a06-gearbox +++ b/Code/A06/devterm-a06-gearbox @@ -7,6 +7,8 @@ import subprocess import time # The gearings below were picked based on various tests by the ClockworkPi devs. +# The maximum-performance maximum-power gearing is present for completeness, but +# shouldn't be needed for most uses. # # You can customise the gearings by editing the list below. The valid freqencies # for CPU can be looked up here (substituting for ): @@ -37,6 +39,11 @@ def gears(): big=(1200000,) * 2, gpu_freq=400000000, use="performance-first tasks"), + gear( + little=(1416000,) * 4, + big=(1800000,) * 2, + gpu_freq=800000000, + use="max performance, max power (usage)"), ] GPU_GOV_SIMPLE = "simple_ondemand"