diff options
author | Paul Duncan <pabs@pablotron.org> | 2023-09-18 19:42:53 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2023-09-18 19:42:53 -0400 |
commit | 0d39d865eec8f6def6068c3bc08b1c55e7358f3e (patch) | |
tree | 0427d1badd6f050b42c0e45aa3ef965d3e01159f /tests | |
parent | d65046e34693c21067dc580e71485a8e703fc284 (diff) | |
download | sha3-0d39d865eec8f6def6068c3bc08b1c55e7358f3e.tar.bz2 sha3-0d39d865eec8f6def6068c3bc08b1c55e7358f3e.zip |
tests/permute: remove iota optimization comment
Diffstat (limited to 'tests')
-rw-r--r-- | tests/permute/permute.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/permute/permute.c b/tests/permute/permute.c index 3a236a0..9d2be35 100644 --- a/tests/permute/permute.c +++ b/tests/permute/permute.c @@ -438,8 +438,6 @@ void permute_avx512(uint64_t a[static 25], const size_t num_rounds) { // beginning and end of the function. // // there are still several optimizations that can be done. for example: -// - iota does not need to reload the round constant every round -// (only every 8th round) // - some spills could be addressed // - probably more unnecessary register usage void permute_avx512_fast(uint64_t s[static 25], const size_t num_rounds) { |