mindquantum.algorithm.nisq.Ansatz13

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

Ansatz 13 implement from arxiv paper.

../../_images/ansatz13.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 Ansatz13
>>> Ansatz13(4, 1).circuit
      ┏━━━━━━━━┓ ┏━━━━━━━━┓                                  ┏━━━━━━━━┓
q0: ──┨ RY(p0) ┠─┨ RZ(p4) ┠────────────────────────────■─────┨ RY(p8) ┠──────────────↯─
      ┗━━━━━━━━┛ ┗━━━━┳━━━┛                            ┃     ┗━━━━━━━━┛
      ┏━━━━━━━━┓      ┃                           ┏━━━━┻━━━┓ ┏━━━━━━━━┓
q1: ──┨ RY(p1) ┠──────╂─────────────────────■─────┨ RZ(p7) ┠─┨ RY(p9) ┠──────────────↯─
      ┗━━━━━━━━┛      ┃                     ┃     ┗━━━━━━━━┛ ┗━━━━━━━━┛
      ┏━━━━━━━━┓      ┃                ┏━━━━┻━━━┓            ┏━━━━━━━━━┓ ┏━━━━━━━━━┓
q2: ──┨ RY(p2) ┠──────╂──────────■─────┨ RZ(p6) ┠────────────┨ RY(p10) ┠─┨ RZ(p12) ┠─↯─
      ┗━━━━━━━━┛      ┃          ┃     ┗━━━━━━━━┛            ┗━━━━━━━━━┛ ┗━━━━┳━━━━┛
      ┏━━━━━━━━┓      ┃     ┏━━━━┻━━━┓                       ┏━━━━━━━━━┓      ┃
q3: ──┨ RY(p3) ┠──────■─────┨ RZ(p5) ┠───────────────────────┨ RY(p11) ┠──────■──────↯─
      ┗━━━━━━━━┛            ┗━━━━━━━━┛                       ┗━━━━━━━━━┛
                  ┏━━━━━━━━━┓
q0: ───────■──────┨ RZ(p14) ┠───────────────
           ┃      ┗━━━━┳━━━━┛
           ┃           ┃      ┏━━━━━━━━━┓
q1: ───────╂───────────■──────┨ RZ(p15) ┠───
           ┃                  ┗━━━━┳━━━━┛
           ┃                       ┃
q2: ───────╂───────────────────────■────────

      ┏━━━━┻━━━━┓
q3: ──┨ RZ(p13) ┠───────────────────────────
      ┗━━━━━━━━━┛