From 28308852b0f83f5c1f2368b8927b7cd4eb087a47 Mon Sep 17 00:00:00 2001 From: Jasper Date: Wed, 19 Nov 2025 13:20:44 +0100 Subject: [PATCH] Fix typo (compilation time -> runtime) --- src/2025h2/scalable-vectors.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/2025h2/scalable-vectors.md b/src/2025h2/scalable-vectors.md index 4b22b47e..9ac6ebc3 100644 --- a/src/2025h2/scalable-vectors.md +++ b/src/2025h2/scalable-vectors.md @@ -46,9 +46,9 @@ and intrinsics, but instead will work on newer processors with different vector register lengths and performance characteristics. SVE has interesting and challenging implications for Rust, introducing value -types with sizes that can only be known at compilation time, requiring -significant work on the language and compiler. Arm has since introduced Scalable -Matrix Extensions (SME), building on SVE to add new capabilities to efficiently +types with sizes that can only be known at runtime, requiring significant work +on the language and compiler. Arm has since introduced Scalable Matrix +Extensions (SME), building on SVE to add new capabilities to efficiently process matrices, with even more interesting implications for Rust. Hardware is generally available with SVE, and key Rust stakeholders want to be