This repository has been archived on 2023-05-01. You can view files and clone it, but cannot push or open issues or pull requests.
blake3/cpu_darwin.go

23 lines
354 B
Go
Raw Normal View History

2020-08-04 22:13:57 +00:00
package blake3
import (
"syscall"
"github.com/klauspost/cpuid"
)
var (
haveAVX2 bool
haveAVX512 bool
)
func init() {
haveAVX2 = cpuid.CPU.AVX2()
haveAVX512 = cpuid.CPU.AVX512F()
if !haveAVX512 {
// On some Macs, AVX512 detection is buggy, so fallback to sysctl
b, _ := syscall.Sysctl("hw.optional.avx512f")
haveAVX512 = b[0] == 1
}
}