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.
|
// +build !darwin
|
|
|
|
package blake3
|
|
|
|
import "github.com/klauspost/cpuid/v2"
|
|
|
|
var (
|
|
haveAVX2 = cpuid.CPU.Supports(cpuid.AVX2)
|
|
haveAVX512 = cpuid.CPU.Supports(cpuid.AVX512F)
|
|
)
|