From f9dd1ff44938b1bfb7b943b7d984ab49b652c6c3 Mon Sep 17 00:00:00 2001 From: Maddy Underwood <167196745+madeline-underwood@users.noreply.github.com> Date: Thu, 13 Feb 2025 17:09:03 +0000 Subject: [PATCH] Checked final para in outer-product.md --- .../learning-paths/cross-platform/sme2/4-outer-product.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/content/learning-paths/cross-platform/sme2/4-outer-product.md b/content/learning-paths/cross-platform/sme2/4-outer-product.md index 588b72e0e6..ea55642846 100644 --- a/content/learning-paths/cross-platform/sme2/4-outer-product.md +++ b/content/learning-paths/cross-platform/sme2/4-outer-product.md @@ -103,10 +103,6 @@ the matrix multiplication perform the preprocessing step correctly. This code is located in file ``preprocess_vanilla.c``. {{% notice Note %}} -In a real-world application, it may be possible to arrange for ``matLeft`` to -be stored in column-major order, in which case no further transposition would -be needed, and the preprocess step would be unncessary. Matrix processing -frameworks / libraries often have some attributes with the Matrix object to -track if it is row- or column-major order, and / or if it has been transposed -to avoid unncessary computations. +In real-world applications, it might be possible to arrange for ``matLeft`` to +be stored in column-major order, eliminating the need for transposition, and making the preprocessing step unnecessary. Matrix processing frameworks and libraries often have attributes within the matrix object to track if it is row- or column-major order, and whether it has been transposed to avoid unnecessary computations. {{% /notice %}}