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
src/crc.cpp is a very simple CRC-32 implementation. SIMD implementations can be more than 14x faster.
src/crc.cpp
See https://fastcompression.blogspot.com/2019/03/presenting-xxh3.html?showComment=1552693962180#c8263190774970267162
The text was updated successfully, but these errors were encountered:
Actually, 14x should probably be 41x. See https://fastcompression.blogspot.com/2019/03/presenting-xxh3.html?showComment=1552696407071#c3490092340461170735
Sorry, something went wrong.
C/C++ x86 SIMD (SSE4.2 + PCLMUL) CRC-32 implementation: nigeltao@9f561bb
No branches or pull requests
src/crc.cpp
is a very simple CRC-32 implementation. SIMD implementations can be more than 14x faster.See https://fastcompression.blogspot.com/2019/03/presenting-xxh3.html?showComment=1552693962180#c8263190774970267162
The text was updated successfully, but these errors were encountered: