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.go

11 lines
145 B
Go
Raw Normal View History

2020-08-04 22:13:57 +00:00
// +build !darwin
package blake3
import "github.com/klauspost/cpuid"
var (
haveAVX2 = cpuid.CPU.AVX2()
haveAVX512 = cpuid.CPU.AVX512F()
)