-
Notifications
You must be signed in to change notification settings - Fork 72
/
cl-quil-benchmarking.asd
33 lines (32 loc) · 1.17 KB
/
cl-quil-benchmarking.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
(asdf:defsystem #:cl-quil-benchmarking
:depends-on (#:cl-quil
#+sbcl #:sb-sprof ; used for quilc-perf (SBCL only)
#:qvm-app ; used for quilc-perf
#:metering ; used for quilc-perf
#:trivial-benchmark
#:bordeaux-threads
#:trivial-garbage)
:license "Apache License 2.0 (See LICENSE.txt)"
:pathname "benchmarking/"
:serial t
:components ((:file "package")
(:module "qaoa-tests"
:serial t
:components ((:file "generate-program")))
(:file "rewiring-analysis")
(:file "qasm-benchmarks")
(:file "quilc-perf")
(:file "quilc-mon-prof")
(:file "suite")))
(asdf:defsystem "cl-quil-benchmarking/foust"
:depends-on ("coalton"
"cl-quil/coalton"
"cl-quil/foust"
"bordeaux-threads"
"trivial-garbage")
:author "Yarin Heffes"
:description "A benchmark for Foust."
:license "Apache License 2.0"
:pathname "benchmarking/foust/"
:serial t
:components ((:file "foust-benchmarking")))