gguf : fix typo

This commit is contained in:
Georgi Gerganov 2023-08-26 23:14:19 +03:00
parent 09b6da741e
commit b61b170005
No known key found for this signature in database
GPG key ID: 449E073F9DC10735

2
ggml.c
View file

@ -19394,7 +19394,7 @@ size_t ggml_quantize_chunk(enum ggml_type type, const float * src, void * dst, i
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
struct gguf_str { struct gguf_str {
uint64_t n; // GGUVv2 uint64_t n; // GGUFv2
char * data; char * data;
}; };