From 030a8b332625f1501d534324055b1de810fe9233 Mon Sep 17 00:00:00 2001 From: Frank Wessels Date: Tue, 25 Jun 2024 11:33:13 +0000 Subject: [PATCH] Disable SVE2 support until tested on real hardware (not just emulator) --- highwayhash_arm64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highwayhash_arm64.go b/highwayhash_arm64.go index 6297bc4..d94e482 100644 --- a/highwayhash_arm64.go +++ b/highwayhash_arm64.go @@ -16,7 +16,7 @@ var ( useAVX2 = false useNEON = cpu.ARM64.HasASIMD useSVE = cpu.ARM64.HasSVE - useSVE2 = cpu.ARM64.HasSVE2 + useSVE2 = false // cpu.ARM64.HasSVE2 -- disable until tested on real hardware useVMX = false )