Hello,
Please could someone explain me or point me to right direction?
Im bit confused about OC settings:
there are multiple OC parts:
1. This one i understand is the MAIN setting for all card/algo/hash
I either enable/disable PowerLimit, but the CORE and MEM stays
# OC (overclock) and Power Limit settings #
# #
########################################################
POWERLIMIT="NO" # YES or NO # Choose YES to set Global Power Limit for all GPU's
POWERLIMIT_WATTS=75 # Global Power Limit in watts for all GPU's. If enabled, INDIVIDUAL settings will override this.
__CORE_OVERCLOCK=100 # Global Core overclock for all GPU's if not using INDIVIDUAL settings
MEMORY_OVERCLOCK=100 # Global Memory overclock for all GPU's if not using INDIVIDUAL settings
2. Set this as NO - dont want to be ALGO (coin) specific
# Default values set at the end of 1bash are for 1060, remember to set yours accordingly.
ALGO_SPECIFIC_OC="NO" # YES or NO # See the description above
3. This one i thought its hash (equihash) specific OC setting, but it wont take it - ignores
So what is it for? not sure what relation it has with FANs
# ENSURE YOU USE MINER_TEMP_CONTROL for fanspeed
equihash_POWERLIMIT_WATTS=115
__equihash_CORE_OVERCLOCK=110
equihash_MEMORY_OVERCLOCK=500
4. Those are per card in case i have different models in the rig
########################################################
# #
# INDIVIDUAL Power Limit, Temp and Clock settings #
# #
########################################################
# Settings below are for rigs using INDIVIDUAL powerlimit / target temps / clocks only
# If set to YES, the INDIVIDUAL settings will override the GLOBAL settings
INDIVIDUAL_POWERLIMIT="NO" # YES or NO
# Set individual powerlimits here if INDIVIDUAL_POWERLIMIT="YES"
INDIVIDUAL_POWERLIMIT_0=100
INDIVIDUAL_POWERLIMIT_1=100
5. Not sure why are also HASH specific OC settings and also ALGO/COIN specific - bit confused

# ALGO_SPECIFIC_OC settings #
# #
########################################################
# ALGO_SPECIFIC_OC settings
# OC settings you can use based on COIN or ALGO (how ever you want to categorize them)
# Deafault values are for 1060 check http://krypto-mining.blogspot.co.uk/ for other OC values
if [ $ALGO_SPECIFIC_OC == "YES" ]
then
# Equihash
if [ $COIN == "BTG" -o $COIN == "ZEC" -o $COIN == "ZEN" -o $COIN == "HUSH" -o $COIN == "ZCL" -o $COIN == "KMD" -o $COIN == "ZPOOL_EQUIHASH" -o $COIN == "MPH_EQUIHASH" -o $COIN == "NICE_EQUIHASH" -o $COIN == "VOTE" ]
then
ALGORITHM="EQUIHASH"
POWERLIMIT_WATTS=130
__CORE_OVERCLOCK=150
MEMORY_OVERCLOCK=800
fi