Skip to content

small and simple ocerclocking script for AMD GPU for SimpleMinings OS.

Notifications You must be signed in to change notification settings

kusayuzayushko/oc_amd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

oc_amd

Small and simple ocerclocking script for AMD GPU ( R series ) to replace default SimpleMiningsOS method.

Installation

Connect to you mining rig (directly or via ssh).

Install git

sudo apt install git-core

Clone repository:

git clone https://github.com/kusayuzayushko/oc_amd.git

Copy script into /root/utils directory

sudo cp oc_amd/oc_amd_r.sh /root/utils

Make it executable

sudo chmod +x /root/utils/oc_amd_r.sh

Use

sudo /root/utils/oc_amd_r.sh <core,core> <mem,mem> <power,power>

If you want to replase default SMOS method, edit /root/xminer.sh file. Change this section

echo "============ OVERCLOCKING ================="
if [ $osSeries == "R" ]; then
    amdconfig --od-enable --adapter=all
    amdconfig --od-setclocks=$MINER_CORE,$MINER_MEMORY --adapter=all &
    /root/utils/atitweak/atitweak -p $MINER_POWERLIMIT --adapter=all &
fi

to

echo "============ OVERCLOCKING ================="
if [ $osSeries == "R" ]; then
    sudo /root/utils/oc_amd_r.sh $MINER_CORE $MINER_MEMORY $MINER_POWERLIMIT
#    amdconfig --od-enable --adapter=all
#    amdconfig --od-setclocks=$MINER_CORE,$MINER_MEMORY --adapter=all &
#    /root/utils/atitweak/atitweak -p $MINER_POWERLIMIT --adapter=all &
fi

Please, report all bugs here or contact cryptoscum in http://chat.simplemining.net/channel/general if you need help or have any questions.

About

small and simple ocerclocking script for AMD GPU for SimpleMinings OS.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages