forked from gonzojive/deep-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deep-learning.asd
36 lines (31 loc) · 994 Bytes
/
deep-learning.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
;;;; jwacs.asd
;;;
;;; This is the system definition file for the jwacs project.
;;; It defines the asdf system plus any extra asdf operations
;;; (eg test-op).
(defpackage :deep-learning-system
(:use :cl :asdf)
(:export
#:*version*
#:*executable-name*))
(in-package :deep-learning-system)
;;;; ======= System definition =====================================================================
(asdf:defsystem deep-learning
:version *version*
:author "Red Daly"
:licence "MIT License <http://www.opensource.org/licenses/mit-license.php>"
:serial t
:components ((:module
"src"
:components
((:file "package")
(:file "sparse-autoencoder" :depends-on ("package"))
)))
:depends-on (:alexandria :anaphora :lisp-matrix))
#+nil
(defsystem deep-learning-tests
:components ((:module "test"
:components ((:file "test-package")
(:file "memory-tests" :depends-on ("test-package"))
)))
:depends-on ("deep-learning" "stefil"))