cosmopolitan/third_party/zlib/crc32_simd_avx512.c
Justine Tunney a05ce3ad9d
Support avx512f + vpclmulqdq crc32() acceleration
Cosmo's _Cz_crc32() function now goes 73 GiB/s on Threadripper. This
will significantly improve the performance of the PKZIP file format.
This algorithm is also used by apelink, to create deterministic ids.
2024-05-29 10:13:37 -07:00

3 lines
70 B
C

#ifdef BUILD_AVX512
#include "third_party/zlib/crc32_simd.inc"
#endif