-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-onnx.asd
60 lines (57 loc) · 1.56 KB
/
cl-onnx.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
(asdf:defsystem "cl-onnx/proto"
:author "hikettei"
:licence "MIT"
:description "Automatically generated wrapper for onnx.proto"
:serial t
:depends-on (:cl-protobufs)
:pathname "source"
:components ((:file "onnx.proto")))
(asdf:defsystem "cl-onnx"
:author "hikettei"
:licence "MIT"
:description "A Tiny ONNX Graph Manipulator for Common Lisp"
:serial t
:depends-on (:cl-protobufs
:cl-onnx/proto
:mgl-pax
:cl-annot-revisit
:cl-ppcre
:alexandria
:ieee-floats
:cl-intbytes
:cl-charms)
:pathname "source"
:components ((:file "package")
(:file "utils")
(:file "facet")
(:file "visualize")
(:file "attribute-proto")
(:file "value-info-proto")
(:file "node-proto")
(:file "training-info-proto")
(:file "string-string-entry-proto")
(:file "tensor-annotation")
(:file "graph-proto")
(:file "tensor-proto")
(:file "sparse-tensor-proto")
(:file "tensor-shape-proto")
(:file "type-proto")
(:file "operator-set-id-proto")
(:file "function-proto")
(:file "model-proto")
(:file "io")
(:file "doc")
(:file "nicknames")
(:file "graph-utils")))
(asdf:defsystem "cl-onnx/viz"
:pathname "source"
:depends-on (:cl-easel)
:components ((:file "extra-viz")))
(asdf:defsystem "cl-onnx/test"
:author "hikettei"
:licence "MIT"
:description "Test suites for cl-onnx"
:serial t
:depends-on (:rove)
:pathname "test"
:components ((:file "package")))