-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some more tests for DEFEXPI functionality #501
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -984,24 +984,28 @@ If ENSURE-VALID is T, then a memory reference such as 'foo[0]' will result in an | |
:arguments qubit-list)))) | ||
|
||
(defun pauli-term->matrix (term arguments parameters parameter-names) | ||
(let* ((prefactor-fn | ||
(let* ((prefactor | ||
(typecase (pauli-term-prefactor term) | ||
(number | ||
(lambda (&rest args) (declare (ignore args)) (pauli-term-prefactor term))) | ||
(pauli-term-prefactor term)) | ||
(delayed-expression | ||
(compile nil `(lambda ,parameter-names | ||
(declare (ignorable ,@parameter-names)) | ||
,(delayed-expression-expression (pauli-term-prefactor term))))) | ||
(apply | ||
(compile nil `(lambda ,parameter-names | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Definitely not for this commit, but we might instead simply interpret the expression instead of calling the compiler. |
||
(declare (ignorable ,@parameter-names)) | ||
,(delayed-expression-expression (pauli-term-prefactor term)))) | ||
parameters)) | ||
((or symbol cons) | ||
(compile nil `(lambda ,parameter-names | ||
(declare (ignorable ,@parameter-names)) | ||
,(pauli-term-prefactor term)))))) | ||
(apply | ||
(compile nil `(lambda ,parameter-names | ||
(declare (ignorable ,@parameter-names)) | ||
,(pauli-term-prefactor term))) | ||
parameters)))) | ||
(arg-count (length arguments)) | ||
(size (expt 2 arg-count)) | ||
(m (magicl:make-zero-matrix size size))) | ||
(dotimes (col size) | ||
(let ((row col) | ||
(entry (apply prefactor-fn parameters))) | ||
(entry prefactor)) | ||
(loop :for letter :across (pauli-term-pauli-word term) | ||
:for arg :in (pauli-term-arguments term) | ||
:for arg-position := (- arg-count 1 (position arg arguments :test #'equalp)) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -373,6 +373,54 @@ U(time)~{ ~a~}" | |
(coerce (parsed-program-executable-code cpp) 'list))))) | ||
(is (quil::matrix-equals-dwim original-output compiled-output)))) | ||
|
||
(deftest test-simple-defexpis () | ||
(let ((chip (quil::build-nq-fully-connected-chip 2))) | ||
(dolist (prog-text (list " | ||
PRAGMA INITIAL_REWIRING \"NAIVE\" | ||
DEFGATE EXPI(%beta) p q AS PAULI-SUM: | ||
ZZ(-%beta/4) p q | ||
Z(%beta/4) p | ||
Z(%beta/4) q | ||
|
||
EXPI(2.0) 0 1 | ||
CPHASE(-2.0) 0 1" | ||
" | ||
PRAGMA INITIAL_REWIRING \"NAIVE\" | ||
DEFGATE EXPI(%beta) p AS PAULI-SUM: | ||
Z(%beta/2) p | ||
|
||
EXPI(2.0) 0 | ||
RZ(-2.0) 0")) | ||
(let* ((cpp (compiler-hook (parse-quil prog-text) chip)) | ||
(m (parsed-program-to-logical-matrix cpp))) | ||
(is (quil::double= 1d0 (abs (magicl:ref m 0 0)))) | ||
(loop :for j :below (magicl:matrix-rows m) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is checking |
||
:do (is (quil::double= (magicl:ref m 0 0) | ||
(magicl:ref m j j)))))))) | ||
|
||
(deftest test-horizontal-composition-of-pauli-term->matrix () | ||
(flet ((word->matrix (word) | ||
(quil::pauli-term->matrix | ||
(quil::make-pauli-term :pauli-word word | ||
:prefactor 1 | ||
:arguments (a:iota (length word))) | ||
(a:iota (length word)) nil nil))) | ||
(let* ((X (word->matrix "X")) | ||
(Y (word->matrix "Y")) | ||
(Z (word->matrix "Z")) | ||
(I (word->matrix "I")) | ||
(word-size 4) | ||
(word (random-pauli-word word-size)) | ||
(m (magicl:make-identity-matrix 1))) | ||
(loop :for char :across word | ||
:for p := (ecase char | ||
(#\X X) | ||
(#\Y Y) | ||
(#\Z Z) | ||
(#\I I)) | ||
:do (setf m (magicl:kron m p))) | ||
(is (quil::operator= m (word->matrix word)))))) | ||
|
||
(defun random-permutation (list) | ||
(unless (null list) | ||
(let ((index (random (length list)))) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was wondering where this commit snuck off to.