We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type Hasher struct { // log(n) set of Merkle subtree roots, at most one per height. stack [64 - (guts.MaxSIMD + 10)][8]uint32
I think technically that should be log2(guts.MaxSIMD)==4, instead of guts.MaxSIMD == 16, to get full 2^64-1 input support that the spec requires.
Its an extra 12*32 = 384 bytes per Hasher (so from 1216 bytes -> 1536 bytes for the stack), so probably not too expensive.
The text was updated successfully, but these errors were encountered:
fix lukechampine#23
4919624
No branches or pull requests
I think technically that should be log2(guts.MaxSIMD)==4,
instead of guts.MaxSIMD == 16, to get full 2^64-1 input support
that the spec requires.
Its an extra 12*32 = 384 bytes per Hasher (so from 1216 bytes -> 1536 bytes
for the stack), so probably not too expensive.
The text was updated successfully, but these errors were encountered: