From 506d43035cc1525e330da07a1a8e0b7bb8f3f0c5 Mon Sep 17 00:00:00 2001 From: Piotr Rybiec Date: Fri, 2 Feb 2024 02:39:55 +0100 Subject: [PATCH] typo fix (#607) --- mlx/ops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlx/ops.cpp b/mlx/ops.cpp index 8cb54cc78..d66790a59 100644 --- a/mlx/ops.cpp +++ b/mlx/ops.cpp @@ -2830,7 +2830,7 @@ array conv2d( throw std::invalid_argument("[conv2d] Cannot handle groups != 1 yet"); } if (dilation.first != 1 || dilation.second != 1) { - throw std::invalid_argument("[conv1d] Cannot handle dilation != 1 yet"); + throw std::invalid_argument("[conv2d] Cannot handle dilation != 1 yet"); } // Run checks