| 463 | } |
| 464 | |
| 465 | void ArchVerifyCpuRequirements(const CpuInfo* ci) { |
| 466 | # if defined(ARROW_HAVE_SSE4_2) |
| 467 | if (!ci->IsDetected(CpuInfo::SSE4_2)) { |
| 468 | DCHECK(false) << "CPU does not support the Supplemental SSE4_2 instruction set"; |
| 469 | } |
| 470 | # endif |
| 471 | } |
| 472 | |
| 473 | #elif defined(CPUINFO_ARCH_ARM) |
| 474 | //------------------------------ AARCH64 ------------------------------// |
no test coverage detected