Post
Topic
Board Mining (Altcoins)
Re: [ANN] sgminer v5 - new unified multi-algorithm on-the-fly kernel switching miner
by
cryptosminer
on 24/06/2014, 12:28:24 UTC
Did anybody have the same issue with hashrate drop while using profiles in config file?
Exactly the same parameters but speed of scrypt, scrypt-n, x11, and x13 is lower but on other side keccak speed is a bit higher with profiles.

With profiles

Code:
{
    "pools": [
        {
            "name" : "NiceHash_scrypt",
            "url" : "stratum+tcp://stratum.nicehash.com:3333",
            "user" : "BTCaddress",
            "pass" : "x",
            "profile" : "scrypt"
        },
        {
            "name" : "NiceHash_scrypt-n",
            "url" : "stratum+tcp://stratum.nicehash.com:3335",
            "user" : "BTCaddress",
            "pass" : "x",
            "profile" : "scrypt-n"
        },
        {
            "name" : "NiceHash_X11",
            "url" : "stratum+tcp://stratum.nicehash.com:3336",
            "user" : "BTCaddress",
            "pass" : "x",
            "profile" : "x11"
        },
        {
            "name" : "NiceHash_X13",
            "url" : "stratum+tcp://stratum.nicehash.com:3337",
            "user" : "BTCaddress",
            "pass" : "x",
            "profile" : "x13"
        },
        {
            "name" : "NiceHash_keccak",
            "url" : "stratum+tcp://stratum.nicehash.com:3338",
            "user" : "BTCaddress",
            "pass" : "x",
            "profile" : "keccak"
        }
    ],
    "profiles": [
        {
            "name": "scrypt",
            "algorithm" : "zuikkis",
            "intensity": "13",
            "nfactor" : "10",
            "gpu-engine": "1100, 1055, 1055"
        },
        {
            "name": "scrypt-n",
            "algorithm" : "zuikkis",
            "intensity": "13",
            "nfactor" : "11",
            "gpu-engine": "1100, 1055, 1055"
        },
        {
            "name": "x11",
            "nfactor" : "10",
            "algorithm" : "darkcoin-mod",
            "intensity": "18",
            "gpu-engine": "1105"
        },
        {
            "name": "x13",
            "nfactor" : "10",
            "algorithm" : "marucoin-mod",
            "intensity": "18",
            "gpu-engine": "1105"
        },
        {
            "name": "keccak",
            "nfactor" : "10",
            "algorithm" : "maxcoin",
            "intensity": "13",
            "gpu-engine": "1120"
        }
    ],
    "default-profile" : "scrypt",
    "auto-fan": true,
    "gpu-fan": "50-100",
    "temp-cutoff": "90",
    "temp-overheat": "80",
    "temp-target": "70",
    "intensity": "18",
    "vectors": "1",
    "worksize": "256",
    "lookup-gap": "2",
    "thread-concurrency": "8192",
    "shaders": "2048",
    "api-listen": true,
    "api-port": "4028",
    "api-allow": "W:127.0.0.1",
    "gpu-dyninterval": "7",
    "gpu-platform": "0",
    "gpu-threads": "2",
    "gpu-engine": "1105",
    "gpu-memclock": "1500",
    "gpu-powertune": "-20",
    "gpu-vddc" : "1.112",
    "log": "5",
    "no-pool-disable": true,
    "no-submit-stale": true,
    "queue": "0",
    "scan-time": "1",
    "expiry": "30",
    "shares": "0",
    "failover-switch-delay" : "10",
    "kernel-path": "/usr/local/bin"
}

Old config

Code:
{
    "pools": [
        {
            "name" : "NiceHash_scrypt",
            "url" : "stratum+tcp://stratum.nicehash.com:3333",
            "user" : "BTCaddress",
            "pass" : "x",
            "algorithm" : "zuikkis",
            "intensity": "13",
            "nfactor" : "10",
            "gpu-engine": "1100, 1055, 1055"
        },
        {
            "name" : "NiceHash_scrypt-n",
            "url" : "stratum+tcp://stratum.nicehash.com:3335",
            "user" : "BTCaddress",
            "pass" : "x",
            "algorithm" : "zuikkis",
            "intensity": "13",
            "nfactor" : "11",
            "gpu-engine": "1100, 1055, 1055"
        },
        {
            "name" : "NiceHash_X11",
            "url" : "stratum+tcp://stratum.nicehash.com:3336",
            "user" : "BTCaddress",
            "pass" : "x",
            "nfactor" : "10",
            "algorithm" : "darkcoin-mod",
            "intensity": "18",
            "gpu-engine": "1105"
        },
        {
            "name" : "NiceHash_X13",
            "url" : "stratum+tcp://stratum.nicehash.com:3337",
            "user" : "BTCaddress",
            "pass" : "x",
            "nfactor" : "10",
            "algorithm" : "marucoin-mod",
            "intensity": "18",
            "gpu-engine": "1105"
        },
        {
            "name" : "NiceHash_keccak",
            "url" : "stratum+tcp://stratum.nicehash.com:3338",
            "user" : "BTCaddress",
            "pass" : "x",
            "nfactor" : "10",
            "algorithm" : "maxcoin",
            "intensity": "13",
            "gpu-engine": "1120"
        }
    ],
    "auto-fan": true,
    "gpu-fan": "50-100",
    "temp-cutoff": "90",
    "temp-overheat": "80",
    "temp-target": "70",
    "intensity": "18",
    "vectors": "1",
    "worksize": "256",
    "lookup-gap": "2",
    "thread-concurrency": "8192",
    "shaders": "2048",
    "api-listen": true,
    "api-port": "4028",
    "api-allow": "W:127.0.0.1",
    "gpu-dyninterval": "7",
    "gpu-platform": "0",
    "gpu-threads": "2",
    "gpu-engine": "1105",
    "gpu-memclock": "1500",
    "gpu-powertune": "-20",
    "gpu-vddc" : "1.112",
    "log": "5",
    "no-pool-disable": true,
    "no-submit-stale": true,
    "queue": "0",
    "scan-time": "1",
    "expiry": "30",
    "shares": "0",
    "failover-switch-delay" : "10",
    "kernel-path": "/usr/local/bin"
}

thanx