Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: tomthgrk on January 29, 2014, 08:01:57 PM



Title: Cgminer .conf file
Post by: tomthgrk on January 29, 2014, 08:01:57 PM
Could some post here an example of a cgminer .conf file?

thanks


Title: Re: Cgminer .conf file
Post by: sameev29 on January 29, 2014, 08:08:41 PM
I use these setting with my Sapphire 280X:


{
"pools" : [
   {
      "url" : "",
      "user" : "",
      "pass" : ""
   }
],

"intensity" : "13",
"thread-concurrency" : "11200",
"lookup-gap" : "0",
"worksize" : "256",
"gpu-engine" : "1050",
"gpu-fan" : "0-75",
"gpu-memclock" : "1455",
"gpu-powertune" : "0",
"temp-cutoff" : "83",
"temp-overheat" : "80",
"temp-target" : "70",

"auto-fan" : true,
"auto-gpu" : true,
"expiry" : "120",
"failover-only" : true,
"gpu-threads" : "2",
"log" : "5",
"queue" : "4",
"scan-time" : "40",
"temp-hysteresis" : "3",
"no-submit-stale" : true,

"kernel-path" : "/usr/local/bin"
}


Title: Re: Cgminer .conf file
Post by: Wusolini on January 29, 2014, 09:20:20 PM
this one I use for HD 7850 (scrypt)

you can add more pools for easy


Code:
{
"pools" : [
{
"url" : "stratum+tcp://middlecoin.com:3333",
"user" : "aaabbb",
"pass" : "x"
},
{
"url" : "stratum+tcp://eu.multipool.us:7777",
"user" : "aabbcc",
"pass" : "x"
}



]
,

"intensity" : "15",
"vectors" : "1",
"worksize" : "256",
"kernel" : "scrypt",
"lookup-gap" : "0",
"thread-concurrency" : "8192",
"shaders" : "1024",
"gpu-engine" : "950",
"gpu-fan" : "0-85",
"gpu-memclock" : "1250",
"gpu-memdiff" : "0",
"gpu-powertune" : "0",
"gpu-vddc" : "0.000",
"temp-cutoff" : "90",
"temp-overheat" : "85",
"temp-target" : "72",
"api-port" : "4028",
"auto-fan" : true,
"expiry" : "120",
"gpu-dyninterval" : "7",
"gpu-platform" : "0",
"gpu-threads" : "1",
"log" : "5",
"no-pool-disable" : true,
"queue" : "1",
"scan-time" : "5",                                                                                                                           
"scrypt" : true,                                                                                                                             
"temp-hysteresis" : "3",                                                                                                                     
"shares" : "0",                                                                                                                             
"kernel-path" : "/opt/cgminer/bin"
}


Title: Re: Cgminer .conf file
Post by: tomthgrk on January 30, 2014, 08:10:01 AM
thanks a lot