-
Notifications
You must be signed in to change notification settings - Fork 4
/
avm.asd
85 lines (83 loc) · 2.92 KB
/
avm.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
#|
This file is a part of avm project.
Copyright (c) 2016 Masayuki Takagi ([email protected])
|#
(in-package :cl-user)
(defpackage avm-asd
(:use :cl :asdf))
(in-package :avm-asd)
(defsystem avm
:version "0.1"
:author "Masayuki Takagi"
:license "MIT"
:depends-on (:cl-tuples
:cl-pattern
:cl-unification
:cl-cuda
:bordeaux-threads)
:components ((:module "src"
:serial t
:components
((:file "avm")
(:module "lang"
:serial t
:components
((:file "symbol")
(:file "data")
(:file "type")
(:file "syntax")
(:file "built-in")
(:file "funenv")
(:file "expand-macro")
(:file "convert-implicit-progn")
(:file "binarize")
(:file "convert-functions")
(:file "free-variable")
(:file "unienv")
(:file "typenv")
(:file "appenv")
(:file "infer")
(:file "kernel")
(:file "lang")
(:module "compiler"
:serial t
:components
((:module "lisp"
:serial t
:components
((:file "built-in")
(:file "compile-type")
(:file "varenv")
(:file "compile")
(:file "lang")))
(:module "cuda"
:serial t
:components
((:file "built-in")
(:file "k-normal")
(:file "compile-type")
(:file "compile")
(:file "lang")))
))))
(:module "api"
:serial t
:components
((:file "cuda")
(:file "array")
(:file "kernel-manager")
(:file "defkernel")
(:file "macro"))))))
:description "Efficient and expressive arrayed vector math library with multi-threading and CUDA support."
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.md"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op avm-test))))