diff --git a/content/learning-paths/servers-and-cloud-computing/sve/sve_armie.md b/content/learning-paths/servers-and-cloud-computing/sve/sve_armie.md index baed8f4b5b..a8e769c260 100644 --- a/content/learning-paths/servers-and-cloud-computing/sve/sve_armie.md +++ b/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: ```bash { command_line="user@localhost" } sudo apt install qemu-user -y ``` -Run the example application with a vector length of 256 bits: + +Run the example application with a vector length of 256 bits, note that the vector length is specified in bytes rather than bits: ```bash { command_line="user@localhost | 2" } -qemu-aarch64 -cpu max,sve-default-vector-length=256 ./sve_add.exe +qemu-aarch64 -cpu max,sve-default-vector-length=32 ./sve_add.exe Done. ```