diff options
| author | Alexander Potapenko <glider@google.com> | 2024-09-16 17:49:22 +0200 |
|---|---|---|
| committer | Alexander Potapenko <glider@google.com> | 2024-09-25 09:05:57 +0000 |
| commit | 7c9588a40bd882410049d1e772de2452934a7eaf (patch) | |
| tree | 07e66eb5418c60fa267e0dcd01b2aea88b14f66f /vm/qemu | |
| parent | 0c119dd1f389a9d739e24184e8bdafc62d32fb97 (diff) | |
vm/qemu: enable sve128 on ARM instances
This seems to be an acceptable compromise between speed and coverage
Diffstat (limited to 'vm/qemu')
| -rw-r--r-- | vm/qemu/qemu.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index f187471a1..96fdfd139 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -153,7 +153,7 @@ var archConfigs = map[string]*archConfig{ // Disable SVE and pointer authentication for now, they significantly slow down // the emulation and are unlikely to bring a lot of new coverage. QemuArgs: strings.Join([]string{"-machine virt,virtualization=on,gic-version=max ", - "-cpu max,sve=off,pauth=off -accel tcg,thread=multi"}, ""), + "-cpu max,sve128=on,pauth=off -accel tcg,thread=multi"}, ""), NetDev: "virtio-net-pci", RngDev: "virtio-rng-pci", CmdLine: []string{ |
