OK so "-k" is not a recognized command. How do we specify the mining kernel in sgminer 5.0 ?
PS: "-T" doesnt work so I put a "pause" line.
Anyone?
To specify the kernel, use --algorithm marucoin for x13
Also I found that there is an issue with the example config file on the nicehash page. There is an extra comma which causes sgminer to not load the config file. This seems to be fixed as of now but the extra comma was just before the ] after the {. I removed it and it was fine.
I do seem to be running into an issue with the config file tho. When I try to run just one pool for testing (x11) using the config file, sgminer seems to never submit any work.
However running the equivalent command line, it is working fine
config file:
{
"pools" : [
{
"name" : "NiceHash_X11_multi",
"url" : "stratum+tcp://stratum.nicehash.com:3336",
"user" : "x",
"pass" : "d=0.01",
"pool-algorithm" : "darkcoin-mod",
"pool-thread-concurrency" : "15232",
"pool-gpu-threads" : "2",
"pool-intensity" : "18"
}
],
"failover-only" : true,
"failover-switch-delay" : "30",
"device" : "1"
}
command line:
sgminer.exe --algorithm darkcoin-mod -d 1 -o stratum+tcp://stratum.nicehash.com:3336 -u x -p d=0.01 -I 18 -w 512 -g 2 --thread-concurrency 15232
Thank you very much for you help ! It works now.