Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase NVIDIA overclock limit #507

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Loading