mindquantum.algorithm.nisq.Ansatz2

查看源文件
class mindquantum.algorithm.nisq.Ansatz2(n_qubits: int, depth: int, prefix: str = '', suffix: str = '')[源代码]

Arxiv 论文中所提及的量子线路2。

../../_images/ansatz2.png

请参考论文 Expressibility and entangling capability of parameterized quantum circuits for hybrid quantum-classical algorithms.

参数:
  • n_qubits (int) - 量子线路的总比特数。

  • depth (int) - ansatz 的循环层数。

  • prefix (str) - 参数的前缀。默认值: ''

  • suffix (str) - 参数的后缀。默认值: ''

样例:

>>> from mindquantum.algorithm.nisq import Ansatz2
>>> Ansatz2(3, 2).circuit
      ┏━━━━━━━━┓ ┏━━━━━━━━┓       ┏━━━┓ ┏━━━━━━━━┓ ┏━━━━━━━━┓        ┏━━━┓
q0: ──┨ RX(p0) ┠─┨ RZ(p3) ┠───────┨╺╋╸┠─┨ RX(p6) ┠─┨ RZ(p9) ┠────────┨╺╋╸┠───
      ┗━━━━━━━━┛ ┗━━━━━━━━┛       ┗━┳━┛ ┗━━━━━━━━┛ ┗━━━━━━━━┛        ┗━┳━┛
      ┏━━━━━━━━┓ ┏━━━━━━━━┓ ┏━━━┓   ┃   ┏━━━━━━━━┓ ┏━━━━━━━━━┓ ┏━━━┓   ┃
q1: ──┨ RX(p1) ┠─┨ RZ(p4) ┠─┨╺╋╸┠───■───┨ RX(p7) ┠─┨ RZ(p10) ┠─┨╺╋╸┠───■─────
      ┗━━━━━━━━┛ ┗━━━━━━━━┛ ┗━┳━┛       ┗━━━━━━━━┛ ┗━━━━━━━━━┛ ┗━┳━┛
      ┏━━━━━━━━┓ ┏━━━━━━━━┓   ┃         ┏━━━━━━━━┓ ┏━━━━━━━━━┓   ┃
q2: ──┨ RX(p2) ┠─┨ RZ(p5) ┠───■─────────┨ RX(p8) ┠─┨ RZ(p11) ┠───■───────────
      ┗━━━━━━━━┛ ┗━━━━━━━━┛             ┗━━━━━━━━┛ ┗━━━━━━━━━┛