Skip to content

Commit

Permalink
quil -> cl-quil in entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
bramathon authored and stylewarning committed Sep 7, 2022
1 parent 35e819d commit 9ef4b36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/src/entry-point.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -486,11 +486,11 @@ Returns a values tuple (PROCESSED-PROGRAM, STATISTICS), where PROCESSED-PROGRAM
(let* ((statistics (make-hash-table :test #'equal))
(cl-quil::*compiler-noise* verbose)
(*random-state* (make-random-state t))
(quil::*enable-state-prep-compression* state-aware)
(quil::*enable-approximate-compilation* enable-approximate-compilation)
(quil::*compressor-passes* (or compressor-passes quil::*compressor-passes*))
(quil::*rewriting-peephole-size* (or rewriting-peephole-size quil::*rewriting-peephole-size*))
(quil::*global-queue-tolerance-threshold* (or global-queue-tolerance-threshold quil::*global-queue-tolerance-threshold*))
(cl-quil::*enable-state-prep-compression* state-aware)
(cl-quil::*enable-approximate-compilation* enable-approximate-compilation)
(cl-quil::*compressor-passes* (or compressor-passes cl-quil::*compressor-passes*))
(cl-quil::*rewriting-peephole-size* (or rewriting-peephole-size cl-quil::*rewriting-peephole-size*))
(cl-quil::*global-queue-tolerance-threshold* (or global-queue-tolerance-threshold cl-quil::*global-queue-tolerance-threshold*))
)
;; do the compilation
(multiple-value-bind (processed-program topological-swaps)
Expand Down

0 comments on commit 9ef4b36

Please sign in to comment.