-
Notifications
You must be signed in to change notification settings - Fork 24
/
cl-cuda-test.asd
40 lines (39 loc) · 1.34 KB
/
cl-cuda-test.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
#|
This file is a part of cl-cuda project.
Copyright (c) 2012 Masayuki Takagi ([email protected])
|#
(defsystem "cl-cuda-test"
:author "Masayuki Takagi"
:license "MIT"
:depends-on ("cl-cuda"
"prove")
:components ((:module "t"
:serial t
:components
((:module "driver-api"
:serial t
:components
((:file "driver-api")))
(:module "lang"
:serial t
:components
((:file "util")
(:file "data")
(:file "type")
(:file "syntax")
(:file "environment")
(:file "built-in")
(:file "kernel")
(:file "compiler/compile-data")
(:file "compiler/compile-type")
(:file "compiler/type-of-expression")
(:file "compiler/compile-expression")
(:file "compiler/compile-statement")
(:file "compiler/compile-kernel")))
(:module "api"
:serial t
:components
((:file "kernel-manager")
(:file "memory")
(:file "defkernel")
(:file "timer")))))))