We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 274d3d9 + 858ec2c commit 26aed70Copy full SHA for 26aed70
pkg/limayaml/defaults.go
@@ -73,6 +73,10 @@ func defaultCPUType() CPUType {
73
if arch == X8664 && runtime.GOOS == "darwin" {
74
switch cpuType[arch] {
75
case "host", "max":
76
+ // disable AVX-512, since it requires trapping instruction faults in guest
77
+ // Enterprise Linux requires either v2 (SSE4) or v3 (AVX2), but not yet v4.
78
+ cpuType[arch] += ",-avx512vl"
79
+
80
// Disable pdpe1gb on Intel Mac
81
// https://github.com/lima-vm/lima/issues/1485
82
// https://stackoverflow.com/a/72863744/5167443
0 commit comments