mindquantum.algorithm.nisq.Ansatz15

class mindquantum.algorithm.nisq.Ansatz15(n_qubits: int, depth: int, prefix: str = '', suffix: str = '')[source]

Ansatz 15 implement from arxiv paper.

../../_images/ansatz15.png

Please refers to Expressibility and entangling capability of parameterized quantum circuits for hybrid quantum-classical algorithms.

Parameters
  • n_qubits (int) – total qubits number of this ansatz.

  • depth (int) – depth of ansatz.

  • prefix (str) – prefix of parameters. Default: ''.

  • suffix (str) – suffix of parameters. Default: ''.

Examples

>>> from mindquantum.algorithm.nisq import Ansatz15
>>> Ansatz15(4, 1).circuit
      ┏━━━━━━━━┓ ┏━━━┓                   ┏━━━━━━━━┓             ┏━━━┓
q0: ──┨ RY(p0) ┠─┨╺╋╸┠───────────────■───┨ RY(p4) ┠─────────■───┨╺╋╸┠─────────
      ┗━━━━━━━━┛ ┗━┳━┛               ┃   ┗━━━━━━━━┛         ┃   ┗━┳━┛
      ┏━━━━━━━━┓   ┃               ┏━┻━┓ ┏━━━━━━━━┓         ┃     ┃   ┏━━━┓
q1: ──┨ RY(p1) ┠───╂───────────■───┨╺╋╸┠─┨ RY(p5) ┠─────────╂─────■───┨╺╋╸┠───
      ┗━━━━━━━━┛   ┃           ┃   ┗━━━┛ ┗━━━━━━━━┛         ┃         ┗━┳━┛
      ┏━━━━━━━━┓   ┃         ┏━┻━┓       ┏━━━━━━━━┓ ┏━━━┓   ┃           ┃
q2: ──┨ RY(p2) ┠───╂─────■───┨╺╋╸┠───────┨ RY(p6) ┠─┨╺╋╸┠───╂───────────■─────
      ┗━━━━━━━━┛   ┃     ┃   ┗━━━┛       ┗━━━━━━━━┛ ┗━┳━┛   ┃
      ┏━━━━━━━━┓   ┃   ┏━┻━┓             ┏━━━━━━━━┓   ┃   ┏━┻━┓
q3: ──┨ RY(p3) ┠───■───┨╺╋╸┠─────────────┨ RY(p7) ┠───■───┨╺╋╸┠───────────────
      ┗━━━━━━━━┛       ┗━━━┛             ┗━━━━━━━━┛       ┗━━━┛