Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.
Ispezione del circuito
I circuiti quantistici di Amazon Braket hanno un concetto di pseudo-tempo chiamato. Moments
Ciascuno qubit può provare un solo gate perMoment
. Lo scopo Moments
è rendere i circuiti e le loro porte più facili da indirizzare e fornire una struttura temporale.
Nota
I momenti generalmente non corrispondono al momento reale in cui le porte vengono eseguite su a. QPU
La profondità di un circuito è data dal numero totale di Momenti in quel circuito. È possibile visualizzare la profondità del circuito chiamando il metodo circuit.depth
come mostrato nell'esempio seguente.
# define a circuit with parametrized gates circ = Circuit().rx(0, 0.15).ry(1, 0.2).cnot(0,2).zz(1, 3, 0.15).x(0) print(circ) print('Total circuit depth:', circ.depth)
T : | 0 | 1 |2| q0 : -Rx(0.15)-C----------X- | q1 : -Ry(0.2)--|-ZZ(0.15)--- | | q2 : ----------X-|---------- | q3 : ------------ZZ(0.15)--- T : | 0 | 1 |2| Total circuit depth: 3
La profondità totale del circuito precedente è 3 (mostrata come momenti 0
1
, e2
). Puoi controllare il funzionamento del cancello per ogni momento.
Moments
funziona come un dizionario di coppie chiave-valore.
-
La chiave è
MomentsKey()
, che contiene pseudo-tempo e qubit informazioni. -
Il valore viene assegnato nel tipo di
Instructions()
.
moments = circ.moments for key, value in moments.items(): print(key) print(value, "\n")
MomentsKey(time=0, qubits=QubitSet([Qubit(0)])) Instruction('operator': Rx('angle': 0.15, 'qubit_count': 1), 'target': QubitSet([Qubit(0)])) MomentsKey(time=0, qubits=QubitSet([Qubit(1)])) Instruction('operator': Ry('angle': 0.2, 'qubit_count': 1), 'target': QubitSet([Qubit(1)])) MomentsKey(time=1, qubits=QubitSet([Qubit(0), Qubit(2)])) Instruction('operator': CNot('qubit_count': 2), 'target': QubitSet([Qubit(0), Qubit(2)])) MomentsKey(time=1, qubits=QubitSet([Qubit(1), Qubit(3)])) Instruction('operator': ZZ('angle': 0.15, 'qubit_count': 2), 'target': QubitSet([Qubit(1), Qubit(3)])) MomentsKey(time=2, qubits=QubitSet([Qubit(0)])) Instruction('operator': X('qubit_count': 1), 'target': QubitSet([Qubit(0)]))
È inoltre possibile aggiungere porte a un circuito tramiteMoments
.
new_circ = Circuit() instructions = [Instruction(Gate.S(), 0), Instruction(Gate.CZ(), [1,0]), Instruction(Gate.H(), 1) ] new_circ.moments.add(instructions) print(new_circ)
T : |0|1|2| q0 : -S-Z--- | q1 : ---C-H- T : |0|1|2|