summaryrefslogtreecommitdiff
path: root/nvpower
blob: 213e61cf6f8af91ef78e489e16b718168473dbcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

set -e

if [ $1 == "min" ] ; then
    nvidia-settings -a "[gpu:0]/GpuPowerMizerMode=0"
fi

if [ $1 == "max" ] ; then
    nvidia-settings -a "[gpu:0]/GpuPowerMizerMode=1"
fi

if [ $1 == "auto" ] ; then
    nvidia-settings -a "[gpu:0]/GpuPowerMizerMode=2"
fi

nvidia-settings -q GpuPowerMizerMode