blob: ab4cc0bd9a9c88d6ea804610f07ad1355a8207ab (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// Package cpu provides routines for CPU feature detection.
package cpu
// X86 contains x86 CPU feature flags detected at runtime.
//
//nolint:gochecknoglobals
var X86 struct {
HasAVX2 bool
}
|