mirror of
https://github.com/ggerganov/ggml
synced 2026-03-01 20:50:26 +01:00
* docs: gguf spec first pass * docs(gguf): update with review comments * docs(gguf): update with review comments * docs(gguf): quant version optional for unquant * docs(gguf): normalize naming, add whisper * docs(gguf): more review updates * docs(gguf): add norm eps and added_tokens * docs(gguf): move padding * docs(gguf): remove migration tool * docs(gguf): make offset base explicit * docs(gguf): fix replace oops * docs(gguf): alignment metadata+tensor name len max * docs(gguf): clarification, fixes, tensor names * docs(gguf): clarify license * docs(gguf): minor tweaks * docs(gguf): data layout, GQA eq, no ft, LE GGUF * docs(gguf): fix magic order * docs(gguf): match impl * docs(gguf): specify fallback alignment * docs(gguf): remove TensorInfo::n_elements * docs(gguf): filetype, rope base/linear scale * docs(gguf): v2 - uint64 all the things * docs(gguf): tweak extensibility wording * docs(gguf): fix spec discrepancies * docs(gguf): v3 + other fixes * fix(editorconfig): use 2-space tabs for markdown * docs(gguf): clarify big-endian
23 lines
375 B
INI
23 lines
375 B
INI
# https://EditorConfig.org
|
|
|
|
# Top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file, utf-8 charset
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.md]
|
|
indent_size = 2
|
|
|
|
[Makefile]
|
|
indent_style = tab
|
|
|
|
[prompts/*.txt]
|
|
insert_final_newline = unset
|