From 43b7c5f60e309c3404771aee2ca9488790db56de Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Mon, 22 Sep 2025 16:17:09 -0500 Subject: [PATCH v1 2/2] Optimize vector8_has_le() on AArch64. --- src/include/port/simd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/port/simd.h b/src/include/port/simd.h index 6424e8f5a97..a594f1c1de3 100644 --- a/src/include/port/simd.h +++ b/src/include/port/simd.h @@ -249,6 +249,8 @@ vector8_has_le(const Vector8 v, const uint8 c) } } } +#elif defined(USE_NEON) + result = vminvq_u8(v) <= c; #else /* -- 2.39.5 (Apple Git-154)