Post
Topic
Board Mining (Altcoins)
Re: [ANN] sgminer v5 - new unified multi-algorithm on-the-fly kernel switching miner
by
phzi
on 23/06/2014, 02:36:21 UTC
Fucking same.  I got it to stay for one kernel, but after that nope.
And you specified "default-profile": "?" ?

I'm having trouble creating a config with different gpu threads to handle my two 280x and one 290x (with darkcoin). I'm using the latest v5 with profiles which I understand is per pool, so is there a way to extend it per GPU?  ubuntu 13.04 / cata 13.12

Code:
{
"pools" : [
        {
                "name" : "HashFaster Darkcoin",
                "url" : "stratum+tcp://stratum1.dark.hashfaster.com:4444",
                "user" : "jamin84.shelf2",
                "pass" : "x",
                "profile" : "280x"
        },
        {
                "name" : "DarkPool",
                "url" : "stratum+tcp://drkpool.com:333",
                "user" : "jamin84.shelf2",
                "pass" : "x",
                "profile" : "280x"
        }
],
"profiles" : [
        {
                "name" : "280x",
                "algorithm" : "darkcoin-mod",
                "nfactor" : "10",
                "intensity" : "16",
                "worksize" : "256",
                "gpu-threads" : "2",
                "gpu-engine" : "1050-1050",
                "gpu-memclock" : "1500-1500",
                "thread-concurrency" : "22272"
        },
        {
                "name" : "290x",
                "algorithm" : "darkcoin-mod",
                "nfactor" : "10",
                "intensity" : "20",
                "thread-concurrency" : "40100",
                "worksize" : "256",
                "gpu-threads" : "1",
                "gpu-engine" : "938-1050",
                "gpu-memclock" : "1500-1500",
                "thread-concurrency" : "40100"
        }
],
"default-profile" : "280x",
"failover-only" : true,
"failover-switch-delay" : "30",
"no-pool-disable" : true,
"no-submit-stale" : true,
"kernel-path" : "/usr/local/bin",
"kernel" : "alexkarold,ckolivas,zuikkis",
"lookup-gap" : "2,2,2",
"gpu-powertune" : "0,0,0",
"auto-fan" : true,
"temp-target" : "86,86,86",
"temp-overheat" : "92,92,92",
"temp-cutoff" : "95",
"queue" : "1",
"scan-time" : "7",
"expiry" : "28",
"log" : "5"
}


New build is beautiful, getting 3mH/s on each 280x and dropped temps 10+ degrees.

Profiles apply to pools, not devices.  A fixed config for you:
Code:
{
"pools" : [
        {
                "name" : "HashFaster Darkcoin",
                "url" : "stratum+tcp://stratum1.dark.hashfaster.com:4444",
                "user" : "jamin84.shelf2",
                "pass" : "x",
                "profile" : "X11"
        },
        {
                "name" : "DarkPool",
                "url" : "stratum+tcp://drkpool.com:333",
                "user" : "jamin84.shelf2",
                "pass" : "x",
                "profile" : "X11"
        }
],
"profiles" : [
        {
                "name" : "X11",
                "algorithm" : "darkcoin-mod",
                "nfactor" : "10",
                "intensity" : "16,20",
                "worksize" : "256",
                "gpu-threads" : "2,1",
                "lookup-gap" : "2",
                "gpu-engine" : "1050-1050,938-1050",
                "gpu-memclock" : "1500-1500",
                "thread-concurrency" : "22272,40100"
        }
],
"default-profile" : "X11",
"failover-only" : true,
"failover-switch-delay" : "30",
"no-pool-disable" : true,
"no-submit-stale" : true,

"auto-fan" : true,
"temp-target" : "86",
"temp-overheat" : "92",
"temp-cutoff" : "95",

"queue" : "1",
"scan-time" : "7",
"expiry" : "28",
"log" : "5"
}