회로 검사 - Amazon Braket

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

회로 검사

Amazon Braket의 양자 회로에는 라는 의사 시간 개념이 있습니다Moments. 각 qubit 는당 단일 게이트를 경험할 수 있습니다Moment. 의 목적은 회로와 게이트Moments를 더 쉽게 처리하고 시간적 구조를 제공하는 것입니다.

참고

순간은 일반적으로에서 게이트가 실행되는 실시간과 일치하지 않습니다QPU.

회로의 깊이는 해당 회로의 총 순간 수에 따라 결정됩니다. 다음 예제와 circuit.depth 같이 메서드를 호출하는 회로 깊이를 볼 수 있습니다.

# 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

위 회로의 총 회로 깊이는 3입니다(, 0 1및 순간으로 표시됨2). 각 순간에 대한 게이트 작업을 확인할 수 있습니다.

Moments키-값 페어의 사전으로 작동합니다.

  • 키는 의사 시간과 MomentsKey()가 포함된 입니다.qubit 정보.

  • 값은의 유형으로 할당됩니다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)]))

를 통해 회로에 게이트를 추가할 수도 있습니다Moments.

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|