I’m following the guide here:
I’m at the point of creating the nvidia-oc.py file and I already wrote down the MINCLOCK and MAXCLOCK settings from my terminal output.
Here’s what I have so far:
from pynvml import *
nvmlInit()
# This sets the GPU to adjust - if this gives you errors or you have multiple GPUs, set to 1 or try other values.
myGPU = nvmlDeviceGetHandleByIndex(0)
# Set Min and Max core clocks
nvmlDeviceSetGpuLockedClocks(myGPU, 210, 10501)
# Clock offset (0 by default)
nvmlDeviceSetGpcClkVfOffset(myGPU, CLOCKOFFSET)
# Memory Clock offset (0 by default)
nvmlDeviceSetMemClkVfOffset(myGPU, MEMOVERCLOCK)
I need help with what I need to choose for CLOCKOFFSET and MEMOVERCLOCK. How do I delvelop these numbers?