diff options
author | John <78893154+cmp-nct@users.noreply.github.com> | 2024-02-13 18:56:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 19:56:38 +0200 |
commit | 6c00a066928b0475b865a2e3e709e2166e02d548 (patch) | |
tree | ad01b040d0e1295998c5420086dd21c186cdedf6 /examples | |
parent | ea9c8e11436ad50719987fa23a289c74b7b40d40 (diff) |
gguf : add python reader example (#5216)
* Update CMakeLists.txt
* Create reader.py
* Update reader.py
* Update reader.py
another whitespace :|
* Update reader.py
* lintlintlint
Diffstat (limited to 'examples')
-rw-r--r-- | examples/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 68ad8996..653abc73 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -38,6 +38,7 @@ else() add_subdirectory(speculative) add_subdirectory(lookahead) add_subdirectory(lookup) + add_subdirectory(gguf) add_subdirectory(train-text-from-scratch) add_subdirectory(imatrix) if (LLAMA_BUILD_SERVER) |