equihash/blake2-avx2/README.md

717 B

BLAKE2 AVX2 implementations

This is experimental code implementing BLAKE2 using the AVX2 instruction set present in the Intel Haswell and later microarchitectures.

It currently implements BLAKE2b, BLAKE2bp, and BLAKE2sp using 3 similar but slightly different approaches: one lets the compiler choose how to permute the message, another one does it manually, and the final one uses the gather instructions introduced with AVX2. Current recorded speeds for long messages are:

  • 3.19 cycles per byte on Haswell for BLAKE2b;
  • 1.45 cycles per byte on Haswell for BLAKE2bp;
  • 1.56 cycles per byte on Haswell for BLAKE2sp.