| 64 | |
| 65 | #if defined(__arm__) |
| 66 | void decode_hwcaps(CpuIsaInfo &isa, const uint64_t hwcaps, const uint64_t hwcaps2) |
| 67 | { |
| 68 | ARM_COMPUTE_UNUSED(hwcaps2); |
| 69 | isa.fp16 = false; |
| 70 | isa.neon = is_feature_supported(hwcaps, ARM_COMPUTE_CPU_FEATURE_HWCAP_NEON); |
| 71 | } |
| 72 | #elif defined(__aarch64__) |
| 73 | void decode_hwcaps(CpuIsaInfo &isa, const uint64_t hwcaps, const uint64_t hwcaps2) |
| 74 | { |
no test coverage detected