64 bit CRC function exists on Intel SSE4.2 intrinsics.
unsigned __int64 _mm_crc32_u64 (unsigned __int64 crc, unsigned __int64 v)
However I can't find 256 bit version of CRC calculation on AVX2 intrinsics. I'm using 256 bit variables (__m256i) on my program, so I want to calculate crc (or hash) over 256 bits. How can I do this operation with Intel AVX2 ?