BitCrack
BitCrack copied to clipboard
OpenCL bug still not fixed ...
https://github.com/brichard19/BitCrack/blob/6bf8059ef075eb1622298395866b0bd02375e1d9/CLKeySearchDevice/CLKeySearchDevice.cpp#L37
https://github.com/brichard19/BitCrack/blob/6bf8059ef075eb1622298395866b0bd02375e1d9/CLKeySearchDevice/CLKeySearchDevice.cpp#L578
These is a contradiction here:
_points = pointsPerThread * threads * blocks; // line 37
uint64_t totalPoints = (uint64_t)_points * _threads * _blocks; // line 578
At line 37 : _points seems to be the total points since multiplied by threads and blocks At line 587 _points is multiplied again by threads and blocks
I fixed it by naively changing line 578 to this: uint64_t totalPoints = (uint64_t)_points ;
Need Help with private key