From c18cb065b43d8499d8e44cbbaf73914563f868bf Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:42:55 -0500 Subject: [PATCH] spelling: partially Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- mlx/backend/metal/kernels/gemv.metal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mlx/backend/metal/kernels/gemv.metal b/mlx/backend/metal/kernels/gemv.metal index 165868401..d85d72d9e 100644 --- a/mlx/backend/metal/kernels/gemv.metal +++ b/mlx/backend/metal/kernels/gemv.metal @@ -42,7 +42,7 @@ struct GEMVKernel { // Edge case handling: // - The threadgroup with the largest tid will have blocks that exceed the matrix // * The blocks that start outside the matrix are never read (thread results remain zero) - // * The last thread that partialy overlaps with the matrix is shifted inwards + // * The last thread that partially overlaps with the matrix is shifted inwards // such that the thread block fits exactly in the matrix MLX_MTL_CONST short tgp_mem_size = BN * TN * 2; @@ -180,7 +180,7 @@ struct GEMVTKernel { // Edge case handling: // - The threadgroup with the largest tid will have blocks that exceed the matrix // * The blocks that start outside the matrix are never read (thread results remain zero) - // * The last thread that partialy overlaps with the matrix is shifted inwards + // * The last thread that partially overlaps with the matrix is shifted inwards // such that the thread block fits exactly in the matrix