| 316 | } |
| 317 | |
| 318 | void ArchVerifyCpuRequirements(const CpuInfo* ci) { |
| 319 | # if defined(ARROW_HAVE_SSE4_2) |
| 320 | if (!ci->IsDetected(CpuInfo::SSE4_2)) { |
| 321 | DCHECK(false) << "CPU does not support the Supplemental SSE4_2 instruction set"; |
| 322 | } |
| 323 | # endif |
| 324 | } |
| 325 | |
| 326 | #elif XSIMD_TARGET_ARM64 |
| 327 | //------------------------------ AARCH64 ------------------------------// |
no test coverage detected