Skip to content

Commit 8023609

Browse files
committed
contrib : update + cleanup
1 parent 138c87c commit 8023609

31 files changed

+79
-1306
lines changed

CODEOWNERS

Lines changed: 79 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,81 @@
11
# collaborators can optionally add themselves here to indicate their availability for reviewing related PRs
2+
# multiplie collaborators per item can be specified
23

3-
/ci/ @ggerganov
4-
/.devops/*.Dockerfile @ngxson
5-
/tools/server/* @ngxson # no subdir
6-
/tools/server/webui/ @allozaur
7-
/tools/mtmd/ @ngxson
8-
/src/llama-chat.* @ngxson
9-
/ggml/src/ggml-cuda/fattn* @JohannesGaessler
10-
/ggml/src/ggml-cuda/mmq.* @JohannesGaessler
11-
/ggml/src/ggml-cuda/mmvq.* @JohannesGaessler
12-
/ggml/src/ggml-opt.cpp @JohannesGaessler
13-
/ggml/src/gguf.cpp @JohannesGaessler
14-
/ggml/src/ggml-vulkan/ @0cc4m
15-
/ggml/src/ggml-zdnn/ @taronaeo
16-
/.github/workflows/ @CISC
17-
/src/llama-adapter.* @CISC
18-
/src/llama-arch.* @CISC
19-
/src/llama-graph.* @CISC
20-
/src/llama-model.* @CISC
21-
/src/llama-vocab.* @CISC
22-
/gguf-py/ @CISC
23-
/convert_*.py @CISC
24-
requirements*.txt @CISC
4+
/.devops/*.Dockerfile @ngxson
5+
/.github/workflows/ @CISC
6+
/ci/ @ggerganov
7+
/cmake/ @ggerganov
8+
/common/CMakeLists.txt @ggerganov
9+
/common/arg.* @ggerganov
10+
/common/base64.hpp.* @ggerganov
11+
/common/build-info.* @ggerganov
12+
/common/common.* @ggerganov
13+
/common/console.* @ggerganov
14+
/common/llguidance.* @ggerganov
15+
/common/log.* @ggerganov
16+
/common/sampling.* @ggerganov
17+
/common/speculative.* @ggerganov
18+
/convert_*.py @CISC
19+
/examples/batched/ @ggerganov
20+
/examples/batched.swift/ @ggerganov
21+
/examples/convert-llama2c-to-ggml/ @ggerganov
22+
/examples/deprecation-warning/ @ggerganov
23+
/examples/embedding/ @ggerganov
24+
/examples/eval-callback/ @ggerganov
25+
/examples/export-docs/ @ggerganov
26+
/examples/gen-docs/ @ggerganov
27+
/examples/gguf/ @ggerganov
28+
/examples/llama.android/ @ggerganov
29+
/examples/llama.swiftui/ @ggerganov
30+
/examples/llama.vim @ggerganov
31+
/examples/lookahead/ @ggerganov
32+
/examples/lookup/ @ggerganov
33+
/examples/parallel/ @ggerganov
34+
/examples/passkey/ @ggerganov
35+
/examples/retrieval/ @ggerganov
36+
/examples/save-load-state/ @ggerganov
37+
/examples/speculative/ @ggerganov
38+
/examples/speculative-simple/ @ggerganov
39+
/ggml/src/ggml-common.h @ggerganov
40+
/ggml/src/ggml-cpu/ @ggerganov
41+
/ggml/src/ggml-cuda/fattn* @JohannesGaessler
42+
/ggml/src/ggml-cuda/mmq.* @JohannesGaessler
43+
/ggml/src/ggml-cuda/mmvq.* @JohannesGaessler
44+
/ggml/src/ggml-impl.h @ggerganov
45+
/ggml/src/ggml-include/ @ggerganov
46+
/ggml/src/ggml-metal/ @ggerganov
47+
/ggml/src/ggml-opt.cpp @JohannesGaessler
48+
/ggml/src/ggml-quants.* @ggerganov
49+
/ggml/src/ggml-threading.* @ggerganov
50+
/ggml/src/ggml-vulkan/ @0cc4m
51+
/ggml/src/ggml-zdnn/ @taronaeo
52+
/ggml/src/ggml.c @ggerganov
53+
/ggml/src/ggml.cpp @ggerganov
54+
/ggml/src/gguf.cpp @JohannesGaessler
55+
/gguf-py/ @CISC
56+
/media/ @ggerganov
57+
/src/ @ggerganov
58+
/src/llama-adapter.* @CISC
59+
/src/llama-arch.* @CISC
60+
/src/llama-chat.* @ngxson
61+
/src/llama-graph.* @CISC
62+
/src/llama-model.* @CISC
63+
/src/llama-vocab.* @CISC
64+
/tests/ @ggerganov
65+
/tools/batched-bench/ @ggerganov
66+
/tools/main/ @ggerganov
67+
/tools/mtmd/ @ngxson
68+
/tools/perplexity/ @ggerganov
69+
/tools/quantize/ @ggerganov
70+
/tools/server/* @ngxson @ggerganov # no subdir
71+
/tools/server/webui/ @allozaur
72+
/tools/tokenize/ @ggerganov
73+
/tools/tts/ @ggerganov
74+
/vendor/ @ggerganov
75+
AUTHORS @ggerganov
76+
CMakeLists.txt @ggerganov
77+
CONTRIBUTING.md @ggerganov
78+
LICENSE @ggerganov
79+
README.md @ggerganov
80+
SECURITY.md @ggerganov
81+
requirements*.txt @CISC

examples/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ else()
2020

2121
add_subdirectory(gguf-hash)
2222
add_subdirectory(gguf)
23-
add_subdirectory(gritlm)
2423
add_subdirectory(lookahead)
2524
add_subdirectory(lookup)
2625
add_subdirectory(parallel)

examples/Miku.sh

Lines changed: 0 additions & 50 deletions
This file was deleted.

examples/chat-13B.bat

Lines changed: 0 additions & 57 deletions
This file was deleted.

examples/chat-13B.sh

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)