From f890871ed777625b474e4caae6acbbadfa28b0f0 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:55:57 -0500 Subject: [PATCH] spelling: perform Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- mlx/backend/metal/conv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mlx/backend/metal/conv.cpp b/mlx/backend/metal/conv.cpp index e25599caf..3377939ba 100644 --- a/mlx/backend/metal/conv.cpp +++ b/mlx/backend/metal/conv.cpp @@ -68,7 +68,7 @@ void explicit_gemm_conv_1D_gpu( array in_strided(strided_reshape, in_strided_view.dtype(), nullptr, {}); copy_gpu(in_strided_view, in_strided, CopyType::General, s); - // Peform gemm + // Perform gemm std::vector copies = {in_padded, in_strided}; mlx_matmul( s, @@ -260,7 +260,7 @@ void explicit_gemm_conv_2D_gpu( array in_strided(strided_reshape, in_strided_view.dtype(), nullptr, {}); copy_gpu(in_strided_view, in_strided, CopyType::General, s); - // Peform gemm + // Perform gemm std::vector copies = {in_padded, in_strided}; mlx_matmul( s,