Small cleanup

This commit is contained in:
Colin Kealty 2026-03-17 13:03:44 -04:00
parent b85a7c8c6c
commit c7aa761b2d
1 changed files with 1 additions and 3 deletions

View File

@ -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;