/ .gitignore
.gitignore
 1  *.o
 2  *.a
 3  *.so
 4  *.gguf
 5  *.gguf.json
 6  *.bin
 7  *.exe
 8  *.dll
 9  *.log
10  *.gcov
11  *.gcno
12  *.gcda
13  *.dot
14  *.bat
15  *.tmp
16  *.metallib
17  *.etag
18  *.lastModified
19  .DS_Store
20  .build/
21  .cache/
22  .ccls-cache/
23  .direnv/
24  .envrc
25  .swiftpm
26  .venv
27  .clang-tidy
28  .vs/
29  .vscode/
30  .idea/
31  
32  ggml-metal-embed.metal
33  
34  lcov-report/
35  gcovr-report/
36  
37  tags
38  build*
39  !build.zig
40  cmake-build-*
41  android-ndk-*
42  out/
43  tmp/
44  
45  models/*
46  models-mnt
47  
48  /Pipfile
49  /libllama.so
50  /llama-*
51  llama-batched-swift
52  /common/build-info.cpp
53  arm_neon.h
54  compile_commands.json
55  CMakeSettings.json
56  
57  __pycache__
58  dist
59  
60  zig-out/
61  zig-cache/
62  
63  ppl-*.txt
64  qnt-*.txt
65  perf-*.txt
66  
67  examples/jeopardy/results.txt
68  examples/server/*.html.hpp
69  examples/server/*.js.hpp
70  examples/server/*.mjs.hpp
71  examples/server/*.css.hpp
72  
73  poetry.lock
74  poetry.toml
75  nppBackup
76  
77  # Test binaries
78  /tests/test-grammar-parser
79  /tests/test-llama-grammar
80  /tests/test-double-float
81  /tests/test-grad0
82  /tests/test-opt
83  /tests/test-quantize-fns
84  /tests/test-quantize-perf
85  /tests/test-sampling
86  /tests/test-tokenizer-0
87  /tests/test-tokenizer-1-spm
88  /tests/test-tokenizer-1-bpe
89  /tests/test-rope
90  /tests/test-backend-ops