From c7aa761b2d3474221222887b5387302f7803044f Mon Sep 17 00:00:00 2001 From: Colin Kealty <3266127+bartowski1182@users.noreply.github.com> Date: Tue, 17 Mar 2026 13:03:44 -0400 Subject: [PATCH] Small cleanup --- src/llama-quant.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/llama-quant.cpp b/src/llama-quant.cpp index e98d1b91e5..34f1bece09 100644 --- a/src/llama-quant.cpp +++ b/src/llama-quant.cpp @@ -1,4 +1,3 @@ -#include "llama-quant.h" #include "llama-impl.h" #include "llama-model.h" #include "llama-model-loader.h" @@ -18,7 +17,7 @@ // (changes to this struct must be reflected in tools/quantize/quantize.cpp) struct tensor_type_option { std::string name; - ggml_type type = GGML_TYPE_COUNT; + ggml_type type = GGML_TYPE_COUNT; }; // tensor categorization - used to avoid repeated string matching in quantization logic. @@ -198,7 +197,6 @@ struct quantize_state_impl { } }; - // per-tensor metadata, computed in the preliminary loop and used in the main loop struct tensor_metadata { std::string name;