From 4aa24326c267454d45d9581806e16e043e9bb40c Mon Sep 17 00:00:00 2001 From: George Steed Date: Thu, 23 Jan 2025 11:03:00 +0000 Subject: [PATCH] sve_armie.md: Fix documentation of how to specify vector length --- .../servers-and-cloud-computing/sve/sve_armie.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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. ```