mindquantum.algorithm.nisq.Ansatz5
- class mindquantum.algorithm.nisq.Ansatz5(n_qubits: int, depth: int, prefix: str = '', suffix: str = '')[source]
Ansatz 5 implement from arxiv paper.
Please refers to Expressibility and entangling capability of parameterized quantum circuits for hybrid quantum-classical algorithms.
- Parameters
Examples
>>> from mindquantum.algorithm.nisq import Ansatz5 >>> Ansatz5(3, 1).circuit ┏━━━━━━━━┓ ┏━━━━━━━━┓ ┏━━━━━━━━┓ ┏━━━━━━━━┓ q0: ──┨ RX(p0) ┠─┨ RZ(p3) ┠────────────┨ RZ(p7) ┠────────────┨ RZ(p9) ┠──────■──────↯─ ┗━━━━━━━━┛ ┗━━━━━━━━┛ ┗━━━━┳━━━┛ ┗━━━━┳━━━┛ ┃ ┏━━━━━━━━┓ ┏━━━━━━━━┓ ┏━━━━━━━━┓ ┃ ┃ ┃ q1: ──┨ RX(p1) ┠─┨ RZ(p4) ┠─┨ RZ(p6) ┠──────╂──────────■──────────■──────────╂──────↯─ ┗━━━━━━━━┛ ┗━━━━━━━━┛ ┗━━━━┳━━━┛ ┃ ┃ ┃ ┏━━━━━━━━┓ ┏━━━━━━━━┓ ┃ ┃ ┏━━━━┻━━━┓ ┏━━━━┻━━━━┓ q2: ──┨ RX(p2) ┠─┨ RZ(p5) ┠──────■──────────■─────┨ RZ(p8) ┠────────────┨ RZ(p10) ┠─↯─ ┗━━━━━━━━┛ ┗━━━━━━━━┛ ┗━━━━━━━━┛ ┗━━━━━━━━━┛ ┏━━━━━━━━━┓ ┏━━━━━━━━━┓ q0: ───────■──────┨ RX(p12) ┠─┨ RZ(p15) ┠─── ┃ ┗━━━━━━━━━┛ ┗━━━━━━━━━┛ ┏━━━━┻━━━━┓ ┏━━━━━━━━━┓ ┏━━━━━━━━━┓ q1: ──┨ RZ(p11) ┠─┨ RX(p13) ┠─┨ RZ(p16) ┠─── ┗━━━━━━━━━┛ ┗━━━━━━━━━┛ ┗━━━━━━━━━┛ ┏━━━━━━━━━┓ ┏━━━━━━━━━┓ q2: ──────────────┨ RX(p14) ┠─┨ RZ(p17) ┠─── ┗━━━━━━━━━┛ ┗━━━━━━━━━┛