From 5bcf3a67949069f2694ba091b43021e7438c9557 Mon Sep 17 00:00:00 2001 From: Awni Hannun Date: Wed, 22 Oct 2025 16:08:47 -0700 Subject: [PATCH] format --- mlx/io/gguf.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlx/io/gguf.cpp b/mlx/io/gguf.cpp index 00ce95a58..649a7f78d 100644 --- a/mlx/io/gguf.cpp +++ b/mlx/io/gguf.cpp @@ -58,7 +58,8 @@ Shape get_shape(const gguf_tensor& tensor) { std::tuple extract_tensor_data(gguf_tensor* tensor) { if (tensor == nullptr) { - throw std::invalid_argument("[extract_tensor_data] Input tensor pointer is null."); + throw std::invalid_argument( + "[extract_tensor_data] Input tensor pointer is null."); } std::optional equivalent_dtype = gguf_type_to_dtype(tensor->type); // If there's an equivalent type, we can simply copy.