From 039ee912381ac03bd300ad0c779d0de90e5e7ec0 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:43:22 -0500 Subject: [PATCH] spelling: perturbations Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python/tests/test_blas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/tests/test_blas.py b/python/tests/test_blas.py index ffbbbb0a7..a59052936 100644 --- a/python/tests/test_blas.py +++ b/python/tests/test_blas.py @@ -53,10 +53,10 @@ class TestBlas(mlx_tests.MLXTestCase): for dtype in self.dtypes: np_dtype = getattr(np, dtype) base_shapes = [4, 8, 16, 32, 64, 128] - pertubations = [-2, -1, 0, 1, 2] + perturbations = [-2, -1, 0, 1, 2] for dim in base_shapes: - for p in pertubations: + for p in perturbations: shape_a = (dim + p, dim + p) shape_b = (dim + p, dim + p) self.__gemm_test(shape_a, shape_b, np_dtype)