From b61b170005d03ae4215750aea3e941e67e9be298 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 26 Aug 2023 23:14:19 +0300 Subject: [PATCH] gguf : fix typo --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 4a0e13fcb..b01ccecba 100644 --- a/ggml.c +++ b/ggml.c @@ -19394,7 +19394,7 @@ size_t ggml_quantize_chunk(enum ggml_type type, const float * src, void * dst, i //////////////////////////////////////////////////////////////////////////////// struct gguf_str { - uint64_t n; // GGUVv2 + uint64_t n; // GGUFv2 char * data; };