mindquantum.algorithm.nisq.RYRZFull
- class mindquantum.algorithm.nisq.RYRZFull(n_qubits: int, depth: int, prefix: str = '', suffix: str = '')[源代码]
以
RY
门和RZ
作为单比特门,以两两比特都有作用的 CNOT 门作为纠缠门的硬件友好型线路。- 参数:
n_qubits (int) - 量子线路的总比特数。
depth (int) - ansatz 的循环层数。
prefix (str) - 参数的前缀。默认值:
''
。suffix (str) - 参数的后缀。默认值:
''
。
样例:
>>> from mindquantum.algorithm.nisq import RYRZFull >>> RYRZFull(3, 1, prefix='a').circuit ┏━━━━━━━━━━┓ ┏━━━━━━━━━━┓ ┏━━━━━━━━━━┓ ┏━━━━━━━━━━┓ q0: ──┨ RY(a_p0) ┠─┨ RZ(a_p3) ┠───■─────■─────────┨ RY(a_p6) ┠─┨ RZ(a_p9) ┠──── ┗━━━━━━━━━━┛ ┗━━━━━━━━━━┛ ┃ ┃ ┗━━━━━━━━━━┛ ┗━━━━━━━━━━┛ ┏━━━━━━━━━━┓ ┏━━━━━━━━━━┓ ┏━┻━┓ ┃ ┏━━━━━━━━━━┓ ┏━━━━━━━━━━━┓ q1: ──┨ RY(a_p1) ┠─┨ RZ(a_p4) ┠─┨╺╋╸┠───╂─────■───┨ RY(a_p7) ┠─┨ RZ(a_p10) ┠─── ┗━━━━━━━━━━┛ ┗━━━━━━━━━━┛ ┗━━━┛ ┃ ┃ ┗━━━━━━━━━━┛ ┗━━━━━━━━━━━┛ ┏━━━━━━━━━━┓ ┏━━━━━━━━━━┓ ┏━┻━┓ ┏━┻━┓ ┏━━━━━━━━━━┓ ┏━━━━━━━━━━━┓ q2: ──┨ RY(a_p2) ┠─┨ RZ(a_p5) ┠───────┨╺╋╸┠─┨╺╋╸┠─┨ RY(a_p8) ┠─┨ RZ(a_p11) ┠─── ┗━━━━━━━━━━┛ ┗━━━━━━━━━━┛ ┗━━━┛ ┗━━━┛ ┗━━━━━━━━━━┛ ┗━━━━━━━━━━━┛