What about a situation like mine though, where I have 2 of one GPU and 2 of another, so I need to be able to specify different OC and powerlimits for the different cards.
v0013 supports individual card OCs; but it doesn't (as is) support individual card powerlimits. I will add this to the next version.
If you modify oneBash.sh in the following way it will support individual card powerlimits. You may have to stop and restart the mining process a few times before it initializes as intended; if you have a slow usb this is likely. (success can be verified either with a kill-a-watt or by viewing the power readout from EWBF).
Note: in nvOC v0013 firefox has a bookmark to this page.
replace the following part of oneBash.sh:
if [ $POWERLIMIT == "YES" ]
then
sleep 6
#change powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6
fi
with this:
if [ $POWERLIMIT == "YES" ]
then
sleep 6
#change powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 0 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6
fi
if [ $POWERLIMIT == "YES" ]
then
sleep 6
#change powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 1 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6
fi
if [ $POWERLIMIT == "YES" ]
then
sleep 6
#change powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 2 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6
fi
if [ $POWERLIMIT == "YES" ]
then
sleep 6
#change powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 3 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6
fi
replacing the number after pl to what wattage is desired for each card (see how cards are enumerated by EWBF to know which setting applies to which card ( the number after -i should match the number EWBF refers to the card as).
This is for 4x cards; as you said that is what you are using. If you try this let me know if have any problems.