Skip to content

Commit

Permalink
Disable SVE2 support until tested on real hardware (not just emulator)
Browse files Browse the repository at this point in the history
  • Loading branch information
fwessels authored and harshavardhana committed Jun 26, 2024
1 parent b2d40df commit 030a8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion highwayhash_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down

0 comments on commit 030a8b3

Please sign in to comment.