Spaces:
Runtime error
Runtime error
Arrcttacsrks
commited on
Commit
•
bf2fbca
1
Parent(s):
5458c6e
Upload llama.cpp/.gitignore with huggingface_hub
Browse files- llama.cpp/.gitignore +135 -0
llama.cpp/.gitignore
ADDED
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Extensions
|
2 |
+
|
3 |
+
*.a
|
4 |
+
*.bat
|
5 |
+
*.bin
|
6 |
+
*.dll
|
7 |
+
*.dot
|
8 |
+
*.etag
|
9 |
+
*.exe
|
10 |
+
*.gcda
|
11 |
+
*.gcno
|
12 |
+
*.gcov
|
13 |
+
*.gguf
|
14 |
+
*.gguf.json
|
15 |
+
*.lastModified
|
16 |
+
*.log
|
17 |
+
*.metallib
|
18 |
+
*.o
|
19 |
+
*.so
|
20 |
+
*.tmp
|
21 |
+
|
22 |
+
# IDE / OS
|
23 |
+
|
24 |
+
.cache/
|
25 |
+
.ccls-cache/
|
26 |
+
.direnv/
|
27 |
+
.DS_Store
|
28 |
+
.envrc
|
29 |
+
.idea/
|
30 |
+
.swiftpm
|
31 |
+
.vs/
|
32 |
+
.vscode/
|
33 |
+
nppBackup
|
34 |
+
|
35 |
+
|
36 |
+
# Coverage
|
37 |
+
|
38 |
+
gcovr-report/
|
39 |
+
lcov-report/
|
40 |
+
|
41 |
+
# Build Artifacts
|
42 |
+
|
43 |
+
tags
|
44 |
+
.build/
|
45 |
+
build*
|
46 |
+
!build-info.cmake
|
47 |
+
!build-info.cpp.in
|
48 |
+
!build-info.sh
|
49 |
+
!build.zig
|
50 |
+
!docs/build.md
|
51 |
+
/libllama.so
|
52 |
+
/llama-*
|
53 |
+
/vulkan-shaders-gen
|
54 |
+
android-ndk-*
|
55 |
+
arm_neon.h
|
56 |
+
cmake-build-*
|
57 |
+
CMakeSettings.json
|
58 |
+
compile_commands.json
|
59 |
+
ggml-metal-embed.metal
|
60 |
+
llama-batched-swift
|
61 |
+
/rpc-server
|
62 |
+
out/
|
63 |
+
tmp/
|
64 |
+
autogen-*.md
|
65 |
+
|
66 |
+
# Deprecated
|
67 |
+
|
68 |
+
/main
|
69 |
+
/server
|
70 |
+
|
71 |
+
# CI
|
72 |
+
|
73 |
+
!.github/workflows/*.yml
|
74 |
+
|
75 |
+
# Models
|
76 |
+
|
77 |
+
models/*
|
78 |
+
models-mnt
|
79 |
+
!models/.editorconfig
|
80 |
+
!models/ggml-vocab-*.gguf*
|
81 |
+
|
82 |
+
# Zig
|
83 |
+
zig-out/
|
84 |
+
zig-cache/
|
85 |
+
|
86 |
+
# Logs
|
87 |
+
|
88 |
+
ppl-*.txt
|
89 |
+
qnt-*.txt
|
90 |
+
perf-*.txt
|
91 |
+
|
92 |
+
# Examples
|
93 |
+
|
94 |
+
examples/jeopardy/results.txt
|
95 |
+
examples/server/*.css.hpp
|
96 |
+
examples/server/*.html.hpp
|
97 |
+
examples/server/*.js.hpp
|
98 |
+
examples/server/*.mjs.hpp
|
99 |
+
!build_64.sh
|
100 |
+
!examples/*.bat
|
101 |
+
!examples/*/*.kts
|
102 |
+
!examples/*/*/*.kts
|
103 |
+
!examples/sycl/*.bat
|
104 |
+
!examples/sycl/*.sh
|
105 |
+
|
106 |
+
# Python
|
107 |
+
|
108 |
+
/.venv
|
109 |
+
__pycache__/
|
110 |
+
*/poetry.lock
|
111 |
+
poetry.toml
|
112 |
+
|
113 |
+
# Nix
|
114 |
+
/result
|
115 |
+
|
116 |
+
# Test binaries
|
117 |
+
/tests/test-backend-ops
|
118 |
+
/tests/test-double-float
|
119 |
+
/tests/test-grad0
|
120 |
+
/tests/test-grammar-parser
|
121 |
+
/tests/test-llama-grammar
|
122 |
+
/tests/test-opt
|
123 |
+
/tests/test-quantize-fns
|
124 |
+
/tests/test-quantize-perf
|
125 |
+
/tests/test-rope
|
126 |
+
/tests/test-sampling
|
127 |
+
/tests/test-tokenizer-0
|
128 |
+
/tests/test-tokenizer-1-bpe
|
129 |
+
/tests/test-tokenizer-1-spm
|
130 |
+
|
131 |
+
# Scripts
|
132 |
+
!/scripts/install-oneapi.bat
|
133 |
+
|
134 |
+
# Test models for lora adapters
|
135 |
+
/lora-tests
|