mirror of
https://github.com/status-im/status-go.git
synced 2025-01-19 03:04:54 +00:00
97db14083a
* chore_: bump go-waku with filter loop fix * fix_: correct fleet node for staging fleet * fix_: use shards for lightclient init --------- Co-authored-by: Richard Ramos <info@richardramos.me>
12 lines
193 B
Go
12 lines
193 B
Go
//go:build !darwin
|
|
// +build !darwin
|
|
|
|
package guts
|
|
|
|
import "github.com/klauspost/cpuid/v2"
|
|
|
|
var (
|
|
haveAVX2 = cpuid.CPU.Supports(cpuid.AVX2)
|
|
haveAVX512 = cpuid.CPU.Supports(cpuid.AVX512F)
|
|
)
|