-
Notifications
You must be signed in to change notification settings - Fork 10
/
caten.asd
95 lines (88 loc) · 2.83 KB
/
caten.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
(asdf:defsystem "caten"
:description "Programmable Deep Learning Framework"
:author "hikettei <[email protected]>"
:version "0.2"
:licence "MIT"
:depends-on
("caten.apis" "caten.nn")
:serial t
:components ((:file "source/caten-user") (:file "source/documentation"))
:in-order-to
((test-op (test-op "caten/test"))))
(asdf:defsystem "caten/test"
:description "Test suites for Caten"
:depends-on ("caten" "caten/llm" "caten.test-suite")
:in-order-to
((test-op
(asdf:test-op "caten.apis")
(asdf:test-op "caten.nn")
(asdf:test-op "caten.test-suite"))))
(asdf:defsystem "caten/apps"
:description ""
:author "hikettei <[email protected]>"
:depends-on (;; More Applications follow ...
"caten.apps.gpt2")
:components ((:file "apps/documentation")))
;; External system for Caten.
;; Systems including non-portable dependencies (e.g.: CUDA, Metal) or systems cannot be guaranteed to be maintained, are separated from caten.
(asdf:defsystem "caten/metal"
:description "Metal extension for Caten"
:author "hikettei <[email protected]>"
:licence "MIT"
:depends-on ("cl-metal" "caten.apis")
:serial t
:components
((:file "external/backends/metal")))
(asdf:defsystem "caten/gguf"
:description "[gguf](https://github.com/ggerganov/ggml/blob/master/docs/gguf.md) format translator."
:author "hikettei <[email protected]>"
:depends-on ("caten.apis" "caten/llm" "babel" "fast-io" "trivial-download")
:serial t
:pathname "external/gguf"
:components
((:file "package")
(:file "helpers")
(:file "metadata")
(:file "tensor-info")
(:file "gguf-file")
(:file "dequantize")
(:file "documentation")))
(asdf:defsystem "caten/llm"
:description "Various Generative Language Model Implementation in Caten"
:author "hikettei <[email protected]>"
:depends-on ("caten" "cl-ppcre")
:pathname "external/llm"
:components
((:file "package")
(:file "utils")
(:file "tokenizers")
(:file "bpe")
(:file "layers")
(:file "documentation")))
(asdf:defsystem "caten/onnx"
:description "ONNX extension for Caten"
:author "hikettei <[email protected]>"
:depends-on ("caten" "cl-onnx" "alexandria")
:pathname "external/onnx"
:components
((:file "package")
(:file "helpers")
(:file "defop")
(:file "onnx")
(:file "opset")
(:file "documentation")))
(asdf:defsystem "caten/vision"
:description "Computer Vision Implementation in Caten"
:author "hikettei <[email protected]>"
:depends-on ("caten" "opticl")
:pathname "external/vision"
:components
((:file "package")))
(asdf:defsystem "caten/benchmarks"
:description "A set of benchmarks for Caten"
:author "hikettei <[email protected]>"
:depends-on ("caten" "caten/llm" "clgplot" "clingon")
:pathname "external/benchmarks"
:components
((:file "benchmark-simplifier")
(:file "package")))