Hi
Excuse me because I am very new, I am trying to configure the intensities of the gpus manually.
If I use this configuration it works fine
{
"cryptonight_type" : "bittubev2",
"intensity" : 0,
"double_threads" : true
}
I'm trying to use this configuration but I do not know if it's okay
{
"cryptonight_type" : "bittubev2",
"gpu_conf" :
[
{ "id" : 0, "intensity" : 54, "worksize" : 8, "threads" : 2},
{ "id" : 1, "intensity" : 54, "worksize" : 8, "threads" : 2},
{ "id" : 2, "intensity" : 54, "worksize" : 8, "threads" : 2},
{ "id" : 3, "intensity" : 54, "worksize" : 8, "threads" : 2}
]
}
When the active rig is blocked, so I continue to use the initial configuration for now.
My gpus are rx 580/570
Is the configuration I try in manual wrong?
This should work:
{
"cryptonight_type" : "bittubev2",
"intensity" : 0,
"double_threads" : true,
"gpu_conf" :
[
{
"id" : 0,
"intensity" : 54,
"worksize" : 8,
"threads" : 2
},
{
"id" : 1,
"intensity" : 54,
"worksize" : 8,
"threads" : 2
},
{
"id" : 2,
"intensity" : 54,
"worksize" : 8,
"threads" : 2
},
{
"id" : 3,
"intensity" : 54,
"worksize" : 8,
"threads" : 2
}
]
}
When the active rig is blocked
This i don't understand