From bcfac35a096ea151ca96fe0f49efc5a2a18d03f1 Mon Sep 17 00:00:00 2001
From: Christian Legnitto <christian@legnitto.com>
Date: Sat, 23 Nov 2024 13:32:11 -0400
Subject: [PATCH] Temporarily comment out non-square matrices

---
 blog/2024-11-21-optimizing-matrix-mul/code/benches/gpu_bench.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/blog/2024-11-21-optimizing-matrix-mul/code/benches/gpu_bench.rs b/blog/2024-11-21-optimizing-matrix-mul/code/benches/gpu_bench.rs
index 62e24d5..e720fb3 100644
--- a/blog/2024-11-21-optimizing-matrix-mul/code/benches/gpu_bench.rs
+++ b/blog/2024-11-21-optimizing-matrix-mul/code/benches/gpu_bench.rs
@@ -21,6 +21,7 @@ const SIZES: &[(u32, u32, u32)] = &[
     (1024, 1024, 1024),
     (2048, 2048, 2048),
     (4096, 4096, 4096),
+    /*
     // Non-square matrices
     (4, 2, 8),          // A: 4x2, B: 2x8, Result: 4x8
     (8, 4, 2),          // A: 8x4, B: 4x2, Result: 8x2