From cba32489ed0341fd86c4fe0919a5edade48ab6c4 Mon Sep 17 00:00:00 2001 From: Anuskuss Date: Thu, 7 Nov 2024 08:29:30 +0100 Subject: [PATCH] Increase NVIDIA overclock limit --- daemon/gamemode-gpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/gamemode-gpu.c b/daemon/gamemode-gpu.c index 84f255b1..171e0c7e 100644 --- a/daemon/gamemode-gpu.c +++ b/daemon/gamemode-gpu.c @@ -100,8 +100,8 @@ int game_mode_initialise_gpu(GameModeConfig *config, GameModeGPUInfo **info) /* Reject values over some guessed values * If a user wants to go into very unsafe levels they can recompile */ - const int nv_core_hard_limit = 200; - const int nv_mem_hard_limit = 2000; + const int nv_core_hard_limit = 300; + const int nv_mem_hard_limit = 3000; if (new_info->nv_core > nv_core_hard_limit || new_info->nv_mem > nv_mem_hard_limit) { LOG_ERROR( "NVIDIA Overclock value above safety levels of +%d (core) +%d (mem), will "