Any hint why the solver ist 2 times SLOWER in V5 compared to V4 ?
Regards
Try running with ./silentarmy --instances=1 option, it is faster on my nvidia cards with one instance
And replace main.c with this, then rebuild
http://s000.tinyupload.com/index.php?file_id=59090490226848298558
Sorry no same with the changed main.c :
:~/silentarmy$ ./sa-solver --nonces=5
Solving default all-zero 140-byte header
Building program
Hash tables will use 805.3 MB
Running...
Nonce 0000000000000000000000000000000000000000000000000000000000000000: 2 sols
Nonce 0100000000000000000000000000000000000000000000000000000000000000: 0 sols
Nonce 0200000000000000000000000000000000000000000000000000000000000000: 2 sols
Nonce 0300000000000000000000000000000000000000000000000000000000000000: 3 sols
Nonce 0400000000000000000000000000000000000000000000000000000000000000: 2 sols
Total 9 solutions in 1505.8 ms (6.0 Sol/s)
~/silentarmy.v4$ ./sa-solver --nonces=5
Solving default all-zero 140-byte header
Building program
Hash tables will use 805.3 MB
Running...
Nonce 0000000000000000000000000000000000000000000000000000000000000000: 2 sols
Nonce 0100000000000000000000000000000000000000000000000000000000000000: 0 sols
Nonce 0200000000000000000000000000000000000000000000000000000000000000: 2 sols
Nonce 0300000000000000000000000000000000000000000000000000000000000000: 3 sols
Nonce 0400000000000000000000000000000000000000000000000000000000000000: 2 sols
Total 9 solutions in 654.1 ms (13.8 Sol/s)
The difference is in the solver ..
regards