equihash/README.md

14 lines
480 B
Markdown
Raw Normal View History

2016-10-13 16:16:40 -07:00
# equihash
2016-10-14 11:39:22 -07:00
Equihash proof-of-work solvers
2016-10-14 12:33:55 -07:00
2016-10-14 15:28:53 -07:00
Build with "make all"
2016-10-14 12:33:55 -07:00
The executables ending in 1 are compiled without atomics and thus
only suitable for single-threaded use (where they get some speedup over the generic version).
2016-10-14 12:34:39 -07:00
Options -h HEADER -n NONCE are self explanatory.
Add option -r RANGESIZE to search a range of nonces.
2016-10-23 20:34:58 -07:00
Build the faster version courtesy of xenoncat's AVX2 4-way parallel blake2b assembly code with
"make dev1" and bench with "time ./dev1 -n 255 -r 100"