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.
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")
|
2021-01-13 17:11:26 +00:00
|
|
|
haveAVX512 = len(b) > 0 && b[0] == 1
|
2020-08-04 22:13:57 +00:00
|
|
|
}
|
|
|
|
}
|