hi again, alloy is on cryptonight algo right?
On a fork:
Cryptonight-Alloy. That's a variation that's a lot slower than normal cryptonight (the same as Electroneum or Bytecoin for example)
It's normal to get lower perf than with Bytecoin, so
as i started mining alloy my hashrate is 50% less than bytecoin on xmrig
on a AES CPU,
Alloy is twice slower, so yes that's normal. On non-AES, the loss is lower (about -40%)
Now let's go for manual config.
1. In the .bat, replace
--auto by
-c config.txt2. Create a file config.txt in the same folder as the .bat
3. In that new file, paste
"cpu_threads_conf" :
[
{ "cpu_architecture" : "auto", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
{ "cpu_architecture" : "auto", "affine_to_cpu" : 1, "use_cache" : true, "multi_hash":1 },
{ "cpu_architecture" : "auto", "affine_to_cpu" : 2, "use_cache" : true, "multi_hash":1 },
{ "cpu_architecture" : "auto", "affine_to_cpu" : 3, "use_cache" : true, "multi_hash":1 },
]
4. Some tweak: since you didn't give your exact CPU model, i don't know how many CPU cores you have, so i wrote 0,1,2,3
If you have more that 4 logical cores, you may better set 0,2,4,6
You can also play with multi_hash, but with 6M of L3 cache, i guess it will be bad.
Please give the
exact model of your CPU so i can tune it as optimal