From f6afb9c09ba597a6857ec42b3bc3df65aa29b17a Mon Sep 17 00:00:00 2001 From: Dhruv Govil Date: Tue, 22 Oct 2024 16:31:52 -0700 Subject: [PATCH] Remove use of vector (#1514) --- mlx/backend/metal/custom_kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlx/backend/metal/custom_kernel.cpp b/mlx/backend/metal/custom_kernel.cpp index fd002af31..e2627c87b 100644 --- a/mlx/backend/metal/custom_kernel.cpp +++ b/mlx/backend/metal/custom_kernel.cpp @@ -32,7 +32,7 @@ void CustomKernel::eval_gpu( return copies.back(); } }; - std::vector checked_inputs; + std::vector checked_inputs; for (const array& in : inputs) { checked_inputs.push_back(check_input(in)); }