From f4fcfb4e7ce36fa1c23e5735e916d1ab3b882262 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:32:18 -0500 Subject: [PATCH] spelling: dimensions Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- mlx/backend/metal/matmul.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlx/backend/metal/matmul.cpp b/mlx/backend/metal/matmul.cpp index 864181da9..0bce599d3 100644 --- a/mlx/backend/metal/matmul.cpp +++ b/mlx/backend/metal/matmul.cpp @@ -61,7 +61,7 @@ inline void mps_matmul( // 2. Only one of a or b has batch_size_out matrices worth of data and // the other has matrix worth of data - // The matrix dimsenisons of a and b are sure to be regularly strided + // The matrix dimensions of a and b are sure to be regularly strided if (batch_size_out > 1) { // No broadcasting defaults auto batch_size_a = a.data_size() / (M * K);