14 lines
429 B
Common Lisp
14 lines
429 B
Common Lisp
(asdf:defsystem #:cl-blas
|
|
:description "A Common Lisp implementation of the BLAS."
|
|
:version "0.0.1"
|
|
:author "Dominik Martinez"
|
|
:license "GPLv3"
|
|
:depends-on (#:alexandria
|
|
#:serapeum
|
|
#:lparallel
|
|
#:sb-simd)
|
|
:components ((:module "src"
|
|
:components
|
|
((:file "package")
|
|
(:file "cl-blas")
|
|
(:file "benchmarks")))))
|