|
29 | 29 | (defun init-chip (&key (architecture ':cz))
|
30 | 30 | "Initialize a chip from a given architecture with no objects"
|
31 | 31 | (let ((chip-spec (quil::make-chip-specification
|
32 |
| - :objects (vector (quil::make-adjustable-vector) |
33 |
| - (quil::make-adjustable-vector)) |
34 | 32 | :generic-rewriting-rules (coerce (quil::global-rewriting-rules) 'vector))))
|
35 | 33 | (quil::install-generic-compilers chip-spec architecture)
|
36 | 34 | chip-spec))
|
37 | 35 |
|
| 36 | +;;; FIXME: Duplicate of BUILD-CHIP-FROM-DIGRAPH |
38 | 37 | (defun make-graph-chip (graph &key (architecture ':cz))
|
39 | 38 | "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)) |
54 | 47 | (quil:warm-hardware-objects chip-spec)))
|
55 | 48 |
|
56 | 49 | ;; 0 -- 1
|
|
0 commit comments