Skip to content

Commit c841b17

Browse files
committed
Generalize chips specs for higher order objects more thoroughly.
There were a couple places in the data structure definitions that hardcoded assumptions about the order of the objects (to <1): * The length of the OBJECTS vector in a CHIP-SPEC. * The length of the CXNS vector in a HARDWARE-OBJECT. * Various constructors and initializers for building complete chip specifications. To solve this problem we introduce more general abstractions that cover the use case of building a chip-specification, as well as making on-demand adjustable vectors for those whose lengths depend on the order of the objects.
1 parent 56ac09b commit c841b17

11 files changed

+194
-70
lines changed

benchmarking/package.lisp

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
chip-spec-live-qubit-cc
1717
chip-specification
1818
chip-specification-objects
19-
hardware-object-cxns
2019
make-memory-descriptor
2120
pragma-end-commuting-blocks
2221
pragma-end-block

benchmarking/rewiring-analysis.lisp

+9-16
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,21 @@
2929
(defun init-chip (&key (architecture ':cz))
3030
"Initialize a chip from a given architecture with no objects"
3131
(let ((chip-spec (quil::make-chip-specification
32-
:objects (vector (quil::make-adjustable-vector)
33-
(quil::make-adjustable-vector))
3432
:generic-rewriting-rules (coerce (quil::global-rewriting-rules) 'vector))))
3533
(quil::install-generic-compilers chip-spec architecture)
3634
chip-spec))
3735

36+
;;; FIXME: Duplicate of BUILD-CHIP-FROM-DIGRAPH
3837
(defun make-graph-chip (graph &key (architecture ':cz))
3938
"Make a chip from a graph"
40-
(let* ((chip-spec (init-chip :architecture architecture))
41-
(qubits
42-
(loop :for i :below (length graph) :collect (quil::build-qubit i :type '(:RZ :X/2 :MEASURE))))
43-
(qubit-array (make-array (length graph) :initial-contents qubits))
44-
(links
45-
(loop
46-
:for (a . b) :in (graph-edges graph)
47-
:for link-index :from 0
48-
:collect (quil::build-link a b :type architecture)
49-
:do (vector-push-extend link-index (quil::vnth 1 (quil::hardware-object-cxns (aref qubit-array a))))
50-
:do (vector-push-extend link-index (quil::vnth 1 (quil::hardware-object-cxns (aref qubit-array b)))))))
51-
(setf (quil::chip-specification-objects chip-spec)
52-
(make-array 2 :initial-contents (list qubit-array
53-
(coerce links 'vector))))
39+
(let ((chip-spec (init-chip :architecture architecture)))
40+
(loop :for i :below (length graph)
41+
:do (quil::adjoin-hardware-object
42+
(quil::build-qubit i :type '(:RZ :X/2 :MEASURE))
43+
chip-spec))
44+
(loop
45+
:for (a . b) :in (graph-edges graph)
46+
:do (quil::install-link-onto-chip chip-spec a b :architecture architecture))
5447
(quil:warm-hardware-objects chip-spec)))
5548

5649
;; 0 -- 1

boondoggle/src/producers.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ PARAMETER-BOUNDS is a list of maximum random values for the gate parameters."
120120
"This gate spec expects higher order hardware objects to exist.")
121121
(elt (quil::chip-specification-objects chip-specification) gate-order)))
122122
(device-index (random (length available-devices))))
123-
(quil::vnth 0 (quil::hardware-object-cxns (quil::vnth device-index available-devices)))))
123+
(quil::objects-on-hardware-object 0 (quil::vnth device-index available-devices))))
124124
(t
125125
(assert (< gate-order qubits-on-device)
126126
nil

src/addresser/addresser-common.lisp

+5-5
Original file line numberDiff line numberDiff line change
@@ -469,11 +469,11 @@ If DRY-RUN, this returns T as soon as it finds an instruction it can handle."
469469

470470
(loop
471471
:for (candidate-hardware-index candidate-instr) :in instrs
472-
:for physical-qubits := (coerce (vnth 0
473-
(hardware-object-cxns
474-
(chip-spec-hw-object chip-spec (1- (length (application-arguments
475-
candidate-instr)))
476-
candidate-hardware-index)))
472+
:for physical-qubits := (coerce (objects-on-hardware-object
473+
0
474+
(chip-spec-hw-object chip-spec (1- (length (application-arguments
475+
candidate-instr)))
476+
candidate-hardware-index))
477477
'list)
478478

479479
:for candidate-cost := (cost-function state :instr candidate-instr)

src/addresser/addresser-state.lisp

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ INSTR is the \"active instruction\".
144144
(loop :for link :across (chip-spec-links chip-spec)
145145
:for value := (funcall link-cost link)
146146
:do (destructuring-bind (q0 q1)
147-
(coerce (vnth 0 (hardware-object-cxns link)) 'list)
147+
(coerce (objects-on-hardware-object 0 link) 'list)
148148
(setf (aref dist q0 q1) value
149149
(aref dist q1 q0) value)))
150150
;; for each intermediate vertex...
@@ -178,7 +178,7 @@ INSTR is the \"active instruction\".
178178
(let ((hw (vnth j order-list)))
179179
(unless (hardware-object-dead-p hw)
180180
(let* ((instr (apply #'anon-gate "FLEX" (random-special-unitary (expt 2 qubits))
181-
(or (coerce (vnth 0 (hardware-object-cxns hw)) 'list)
181+
(or (coerce (objects-on-hardware-object 0 hw) 'list)
182182
(list j))))
183183
(instrs-decomposed (expand-to-native-instructions (list instr) chip-spec))
184184
(instrs-compressed (if *compute-tight-recombination-bound*

src/addresser/astar-rewiring-search.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ index at a time, rather than one octet at a time."
7070

7171
(defun next-swap-info (swap)
7272
(with-slots (link) swap
73-
(destructuring-bind (q0 q1) (coerce (vnth 0 (hardware-object-cxns link)) 'list)
73+
(destructuring-bind (q0 q1) (coerce (objects-on-hardware-object 0 link) 'list)
7474
;; TODO: Eventually this should look up swap in the list. (See cost-function.lisp)
7575
(values
7676
(permutation-record-duration (vnth 0 (hardware-object-permutation-gates link)))

src/addresser/fidelity-addresser.lisp

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
(subschedule (chip-contiguous-subschedule-from-last-instructions
5454
(addresser-state-chip-schedule state)
5555
(apply #'make-qubit-resource
56-
(coerce (vnth 0 (hardware-object-cxns hardware-object)) 'list))))
56+
(coerce (objects-on-hardware-object 0 hardware-object) 'list))))
5757
(preceding-fidelity
5858
(calculate-instructions-log-fidelity subschedule
5959
(addresser-state-chip-specification state))))
@@ -205,7 +205,7 @@
205205
(swap (apply #'build-gate
206206
(permutation-record-operator permutation-record)
207207
'()
208-
(coerce (vnth 0 (hardware-object-cxns hardware-object)) 'list))))
208+
(coerce (objects-on-hardware-object 0 hardware-object) 'list))))
209209
(calculate-instructions-fidelity (expand-to-native-instructions (list swap) chip-spec) chip-spec)))
210210

211211
(defmethod initialize-instance :after ((instance fidelity-addresser-state)

src/addresser/temporal-addresser.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
(chip-schedule-resource-carving-point
103103
(addresser-state-chip-schedule state)
104104
(apply #'make-qubit-resource
105-
(coerce (vnth 0 (hardware-object-cxns hardware-object)) 'list))))))
105+
(coerce (objects-on-hardware-object 0 hardware-object) 'list))))))
106106
(setf time (min time intelligent-bound)))
107107
time))))
108108

src/chip/chip-reader.lisp

+5-8
Original file line numberDiff line numberDiff line change
@@ -256,13 +256,12 @@
256256
(t
257257
(setf link (build-link q0 q1 :type '(:CZ)))))
258258
(when link
259-
;; notify the qubits that they're attached.
260-
(dolist (qubit-index (list q0 q1))
261-
(vector-push-extend link-index (chip-spec-links-on-qubit chip-spec qubit-index)))
259+
(adjoin-hardware-object link chip-spec)
260+
;; set up the connections between the qubits and the links
261+
(connect-hardware-objects chip-spec link (chip-spec-nth-qubit chip-spec q0))
262+
(connect-hardware-objects chip-spec link (chip-spec-nth-qubit chip-spec q1))
262263
;; store the descriptor in the link hardware-object for later reference
263-
(setf (hardware-object-misc-data link) link-hash)
264-
;; and store the hardware-object into the chip specification
265-
(vector-push-extend link (chip-spec-links chip-spec)))))))))
264+
(setf (hardware-object-misc-data link) link-hash))))))))
266265

267266
(defun load-specs-layer (chip-spec specs-hash)
268267
"Loads the \"specs\" layer into a chip-specification object."
@@ -375,8 +374,6 @@
375374
(or (gethash "isa" hash-table)
376375
(error 'missing-isa-layer-error))))
377376
(chip-spec (make-chip-specification
378-
:objects (make-array 2 :initial-contents (list (make-adjustable-vector)
379-
(make-adjustable-vector)))
380377
:generic-rewriting-rules (coerce (global-rewriting-rules) 'vector))))
381378
;; set up the self-referential compilers
382379
(install-generic-compilers chip-spec (list ':cz))

0 commit comments

Comments
 (0)