mindquantum.algorithm.nisq.Ansatz9
- class mindquantum.algorithm.nisq.Ansatz9(n_qubits: int, depth: int, prefix: str = '', suffix: str = '')[源代码]
Arxiv 论文中所提及的量子线路9。
- 参数:
n_qubits (int) - 量子线路的总比特数。
depth (int) - ansatz 的循环层数。
prefix (str) - 参数的前缀。默认值:
''
。suffix (str) - 参数的后缀。默认值:
''
。
样例:
>>> from mindquantum.algorithm.nisq import Ansatz9 >>> Ansatz9(4, 2).circuit ┏━━━┓ ┏━━━┓ ┏━━━━━━━━┓ ┏━━━┓ ┏━━━┓ ┏━━━━━━━━┓ q0: ──┨ H ┠─────────────┨ Z ┠─┨ RX(p0) ┠─┨ H ┠─────────────┨ Z ┠─┨ RX(p4) ┠─── ┗━━━┛ ┗━┳━┛ ┗━━━━━━━━┛ ┗━━━┛ ┗━┳━┛ ┗━━━━━━━━┛ ┏━━━┓ ┏━━━┓ ┃ ┏━━━━━━━━┓ ┏━━━┓ ┏━━━┓ ┃ ┏━━━━━━━━┓ q1: ──┨ H ┠───────┨ Z ┠───■───┨ RX(p1) ┠─┨ H ┠───────┨ Z ┠───■───┨ RX(p5) ┠─── ┗━━━┛ ┗━┳━┛ ┗━━━━━━━━┛ ┗━━━┛ ┗━┳━┛ ┗━━━━━━━━┛ ┏━━━┓ ┏━━━┓ ┃ ┏━━━━━━━━┓ ┏━━━┓ ┏━━━┓ ┃ ┏━━━━━━━━┓ q2: ──┨ H ┠─┨ Z ┠───■─────────┨ RX(p2) ┠─┨ H ┠─┨ Z ┠───■─────────┨ RX(p6) ┠─── ┗━━━┛ ┗━┳━┛ ┗━━━━━━━━┛ ┗━━━┛ ┗━┳━┛ ┗━━━━━━━━┛ ┏━━━┓ ┃ ┏━━━━━━━━┓ ┏━━━┓ ┃ ┏━━━━━━━━┓ q3: ──┨ H ┠───■───────────────┨ RX(p3) ┠─┨ H ┠───■───────────────┨ RX(p7) ┠─── ┗━━━┛ ┗━━━━━━━━┛ ┗━━━┛ ┗━━━━━━━━┛