cpu_other_x86.go 322 B

1234567891011
  1. // Copyright 2024 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build 386 || amd64p32 || (amd64 && (!darwin || !gc))
  5. package cpu
  6. func darwinSupportsAVX512() bool {
  7. panic("only implemented for gc && amd64 && darwin")
  8. }