diff options
author | Paul Duncan <pabs@pablotron.org> | 2019-07-17 01:12:52 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2019-07-17 01:12:52 -0400 |
commit | 84d33c240c163ef161673ffbdc51c4ef2e43db7b (patch) | |
tree | 3a07751faeee7b061ccd098d885f2fdd18a45cbb | |
parent | 0550dab6180d1a9d1a13e20eea1d6f6ddb1d0371 (diff) | |
download | sha2-84d33c240c163ef161673ffbdc51c4ef2e43db7b.tar.xz sha2-84d33c240c163ef161673ffbdc51c4ef2e43db7b.zip |
add benchmarks to readme
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,18 @@ My C11 SHA256 implementation. See `tests.c` for usage. + +Benchmarks +========== + > time -p ./sha256 ~/Videos/8x*avi > /dev/null + rleal 9.39 + user 9.10 + sys 0.29 + > time -p sha256sum ~/Videos/8x*avi > /dev/null + real 12.04 + user 11.73 + sys 0.31 + > time -p openssl sha256 ~/Videos/8x*avi > /dev/null + real 6.36 + user 6.01 + sys 0.32 |