Post
Topic
Board Mining (Altcoins)
Re: SRBMiner Cryptonight AMD GPU Miner V1.6.8 - V8 & algo switching
by
jazz1984
on 29/10/2018, 10:23:47 UTC
Hi guys. Use srb 1_6_9 on my 7970 and have a less hashrate compared to 1_6_8. The problem is that the value of "fragments"  does not change, it is always 4. Heres my config.txt:
{
"cryptonight_type" : "normalv8",
"intensity" : 57,
"worksize" : 16,
"double_threads" : false,
"fragments" : 8
}


Where is my mistake? Thank you.

You can't define fragments there.
Do it like this :

Code:
"gpu_conf" :
[
{ "id" : 0, "intensity" : 57, "worksize" : 16, "threads" : 2, "fragments" : 8}
]
Thank you, now it works. As i understand value of fragments can be equal only to this values:0,1,2,4,8,16,32,64,128 ?