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 0bb626a + 4aa2432 commit c7da95fCopy full SHA for c7da95f
content/learning-paths/servers-and-cloud-computing/sve/sve_armie.md
@@ -80,10 +80,11 @@ Install `qemu-user` to run the example on processors which do not support SVE:
80
```bash { command_line="user@localhost" }
81
sudo apt install qemu-user -y
82
```
83
-Run the example application with a vector length of 256 bits:
+
84
+Run the example application with a vector length of 256 bits, note that the vector length is specified in bytes rather than bits:
85
86
```bash { command_line="user@localhost | 2" }
-qemu-aarch64 -cpu max,sve-default-vector-length=256 ./sve_add.exe
87
+qemu-aarch64 -cpu max,sve-default-vector-length=32 ./sve_add.exe
88
Done.
89
90
0 commit comments