Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions daemon/gamemode-gpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down