forked from quil-lang/magicl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagicl.asd
executable file
·57 lines (56 loc) · 1.94 KB
/
magicl.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
;;;; magicl.asd
;;;;
;;;; Author: Robert Smith
(asdf:defsystem #:magicl
:license "BSD 3-Clause (See LICENSE.txt)"
:description "Matrix Algebra proGrams In Common Lisp"
:maintainer "Rigetti Computing"
:author "Rigetti Computing"
:version (:read-file-form "VERSION.txt")
:depends-on (#:alexandria
#:cffi
#:cffi-libffi
#:abstract-classes
#:policy-cond)
:in-order-to ((asdf:test-op (asdf:test-op #:magicl-tests)))
:around-compile (lambda (compile)
(let (#+sbcl (sb-ext:*derive-function-types* t))
(funcall compile)))
:serial t
:pathname "src/"
:components
((:file "packages")
(:file "load-libs")
(:file "with-array-pointers")
(:file "cffi-types")
(:module "bindings"
:components ((:file "lapack00-cffi")
(:file "lapack01-cffi")
(:file "lapack02-cffi")
(:file "lapack03-cffi")
(:file "lapack04-cffi")
(:file "lapack05-cffi")
(:file "lapack06-cffi")
(:file "lapack07-cffi")
(:file "blas-cffi")))
(:module "high-level"
:serial t
:components ((:file "util")
(:file "shape")
(:file "abstract-tensor")
(:file "specialize-tensor")
(:file "tensor")
(:file "matrix")
(:file "vector")
(:file "lapack-generics")
(:file "types/single-float")
(:file "types/double-float")
(:file "types/complex-single-float")
(:file "types/complex-double-float")
(:file "types/int32")
(:file "lapack-templates")
(:file "lapack-bindings")
(:file "constructors")
(:file "specialize-constructor")
(:file "polynomial-solver")))
(:file "magicl")))