|
TinyLlama.cpp 1.0
A lightweight C++ implementation of the TinyLlama language model
|
Header structure for GGUF files. More...
#include <gguf_structs.h>

Public Attributes | |
| uint32_t | magic |
| uint32_t | version |
| uint64_t | tensor_count |
| uint64_t | metadata_kv_count |
Header structure for GGUF files.
Definition at line 43 of file gguf_structs.h.
| uint32_t GGUFHeader::magic |
Magic number identifying GGUF format
Definition at line 44 of file gguf_structs.h.
Referenced by load_gguf_meta().
| uint64_t GGUFHeader::metadata_kv_count |
Number of metadata key-value pairs
Definition at line 47 of file gguf_structs.h.
Referenced by load_gguf_meta().
| uint64_t GGUFHeader::tensor_count |
Number of tensors in the file
Definition at line 46 of file gguf_structs.h.
Referenced by load_gguf_meta().
| uint32_t GGUFHeader::version |
Version of the GGUF format
Definition at line 45 of file gguf_structs.h.
Referenced by load_gguf_meta().