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
176 B
Go

// +build !darwin
package blake3
import "github.com/klauspost/cpuid/v2"
var (
haveAVX2 = cpuid.CPU.Supports(cpuid.AVX2)
haveAVX512 = cpuid.CPU.Supports(cpuid.AVX512F)
)