Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Protect polyfills to only be defined when their instruction set is av…
…ailable. `_mm512_dpbusd_epi32_madd`'s implementation uses the following AVX512BW intrinsics: - `_mm512_sub_epi8` - `_mm512_maddubs_epi16` - `_mm512_madd_epi16` `_mm256_dpbusd_epi32_bw`'s implementation uses the following AVX2 intrinsics: - `_mm256_srli_epi32` - `_mm256_xor_si256` - `_mm256_sub_epi8` - `_mm256_maddubs_epi16` - `_mm256_madd_epi16` - `_mm256_add_epi32` PiperOrigin-RevId: 657957490
- Loading branch information