-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcl-dnn.asd
36 lines (35 loc) · 1.23 KB
/
cl-dnn.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
(defsystem "cl-dnn"
:version "0.1.0"
:author "Jerome E. Onwunalu, PhD <jeronwunalu@gmail.com>"
:license "Thedibia LLC"
:depends-on ("alexandria"
"cl-csv"
"cl-simple-table")
:components ((:module "src"
:components
((:file "main")
(:module "array"
:components
((:file "array")))
(:module "activations"
:components
((:file "activations")))
(:module "architecture"
:components
((:file :one-hidden-layer-network)))
(:module "examples"
:components
((:file "mnist-utils")))
)))
:description "CL-DNN - Implementation of Deep Neural Networks using Common Lisp"
:in-order-to ((test-op (test-op "cl-dnn/tests"))))
(defsystem "cl-dnn/tests"
:author "Jerome E. Onwunalu, PhD <jeronwunalu@gmail.com>"
:license "Thedibia LLC"
:depends-on ("cl-dnn"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for cl-dnn"
:perform (test-op (op c) (symbol-call :rove :run c)))