gamemode icon indicating copy to clipboard operation
gamemode copied to clipboard

The [gpu] config section is not configurable from unsafe config files! Option apply_gpu_optimisations will be ignored!

Open Dal78 opened this issue 4 years ago • 0 comments

Not sure whats wrong here because the file is in /etc and perms are correct.

timothyd@Endeavour /etc [255]> gamemoded -t
: Loading config
Loading config file [/etc/gamemode.ini]
Loading config file [/etc/gamemode.ini]
ERROR: The [gpu] config section is not configurable from unsafe config files! Option apply_gpu_optimisations will be ignored!
ERROR: Consider moving this option to /etc/gamemode.ini or /usr/share/gamemode/gamemode.ini
ERROR: The [gpu] config section is not configurable from unsafe config files! Option gpu_device will be ignored!
ERROR: Consider moving this option to /etc/gamemode.ini or /usr/share/gamemode/gamemode.ini
ERROR: The [gpu] config section is not configurable from unsafe config files! Option nv_powermizer_mode will be ignored!
ERROR: Consider moving this option to /etc/gamemode.ini or /usr/share/gamemode/gamemode.ini
: Running tests

:: Basic client tests
:: Passed

:: Dual client tests
gamemode request succeeded and is active
Quitting by request...
:: Passed

:: Gamemoderun and reaper thread tests
...Waiting for child to quit...
...Waiting for reaper thread (reaper_frequency set to 5 seconds)...
:: Passed

:: Supervisor tests
:: Passed

:: Feature tests
::: Verifying CPU governor setting
::: Passed
::: Verifying Scripts
::: Passed (no scripts configured to run)
::: Verifying GPU Optimisations
ERROR: Current Nvidia GPU clocks during gamemode do not match requested values!
	nv_core - expected:275 was:275 | nv_mem - expected:370 was:370 | nv_powermizer_mode - expected:1 was:2
::: Failed!
::: Verifying renice
::: Passed (no renice configured)
::: Verifying ioprio
::: Passed
ERROR: :: Failed!
: Tests Failed!

timothyd@Endeavour /etc> ls -la | grep gamemode.ini -rw-r--r-- 1 root root 4407 Jan 30 10:12 gamemode.ini

timothyd@Endeavour /etc> uname -a Linux Endeavour 5.16.3-zen1-1-zen #1 ZEN SMP PREEMPT Thu, 27 Jan 2022 14:18:27 +0000 x86_64 GNU/Linux Until then im just using some custom startup scripts which works fine if anyone else wants to follow that and is lost:

#!/bin/bash
nvidia-settings -a '[gpu:0]/GPUMemoryTransferRateOffset[3]=0'
nvidia-settings -a '[gpu:0]/GPUGraphicsClockOffset[3]=0'
nvidia-settings -a '[gpu:0]/GPUOverVoltageOffset[3]=0'
nvidia-settings -a '[gpu:0]/GpuPowerMizerMode=0'
xrandr --output DP-4 --mode "insert res" --rate 144

Note i keep my res down at 100hz otherwise my graphics card cant drop its clocks so far so i xrandr bump it to 144. Blanking out settings so people dont copy and set inappropriate OC.

Dal78 avatar Jan 30 '22 10:01 Dal78