Hey Devs:
I found a bug in the nvOC script. I noted that it was not reporting the max power limit for GPUs correctly so I dug in. On line 196 of the 3.0-stable release, you have this:
POWERMAX=$(echo "$PWRLIMIT/1" | bc)
but it should be
POWERMAX=$(echo "$POWERMAX/1" | bc)
Also, where can I find more info on this (from 1bash of 3.0-stable):
# - Pro Settings are not for the faint-hearted. Dont use if you dont know what they are.
I scoured 1bash and 3main for this release and don't see anything else about it. Perhaps it is in a different release branch?
Thanks.