From 3a6a60ca422c655c5ab5e3cfffd2b88f8afef44b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 18:25:15 +0000 Subject: [PATCH 1/2] Initial plan From 10cff878fd2fb267fc0d4e8d418781c23c168e71 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 18:36:08 +0000 Subject: [PATCH 2/2] Fix SIMD article: update metadata, grammar, and heading capitalization Co-authored-by: BillWagner <493969+BillWagner@users.noreply.github.com> --- docs/standard/simd.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/standard/simd.md b/docs/standard/simd.md index 7cf88b01cea0b..ce3fcab6ae251 100644 --- a/docs/standard/simd.md +++ b/docs/standard/simd.md @@ -1,9 +1,10 @@ --- title: SIMD-accelerated types in .NET -description: This article describes SIMD-enable types in .NET and demonstrates how to use hardware SIMD operations in C# and .NET. +description: This article describes SIMD-enabled types in .NET and demonstrates how to use hardware SIMD operations in C# and .NET. author: FIVIL ms.author: tagoo -ms.date: 04/28/2020 +ms.date: 03/17/2026 +ai-usage: ai-assisted --- # Use SIMD-accelerated numeric types @@ -33,7 +34,7 @@ The SIMD-accelerated types are implemented in such a way that they can be used w Before executing custom SIMD algorithms, it's possible to check if the host machine supports SIMD by using , which returns a . This doesn't guarantee that SIMD-acceleration is enabled for a specific type, but is an indicator that it's supported by some types. -## Simple Vectors +## Simple vectors The most primitive SIMD-accelerated types in .NET are , , and types, which represent vectors with 2, 3, and 4 values. The example below uses to add two vectors.