mindquantum.algorithm.compiler.compile_circuit

查看源文件
mindquantum.algorithm.compiler.compile_circuit(compiler: BasicCompilerRule, circ: Circuit)[源代码]

直接根据给定的编译规则,编译一个量子线路。

参数:
返回:

Circuit,编译后的量子线路。

样例:

>>> from mindquantum.algorithm.compiler import compile_circuit, BasicDecompose
>>> from mindquantum.core import gates as G
>>> from mindquantum.core.circuit import Circuit
>>> circ = Circuit([G.Rxx('a').on([0, 1]), G.X(0, [1, 2])])
>>> circ
      ┏━━━━━━━━┓ ┏━━━┓
q0: ──┨        ┠─┨╺╋╸┠───
      ┃        ┃ ┗━┳━┛
      ┃ Rxx(a) ┃   ┃
q1: ──┨        ┠───■─────
      ┗━━━━━━━━┛   ┃

q2: ───────────────■─────
>>> compile_circuit(BasicDecompose(), circ)
      ┏━━━┓                       ┏━━━┓ ┏━━━┓ ┏━━━┓ ┏━━━━┓ ┏━━━┓ ┏━━━┓ ┏━━━┓ ┏━━━━┓ ┏━━━┓
q0: ──┨ H ┠───■───────────────■───┨ H ┠─┨ H ┠─┨╺╋╸┠─┨ T† ┠─┨╺╋╸┠─┨ T ┠─┨╺╋╸┠─┨ T† ┠─┨╺╋╸┠─↯─
      ┗━━━┛   ┃               ┃   ┗━━━┛ ┗━━━┛ ┗━┳━┛ ┗━━━━┛ ┗━┳━┛ ┗━━━┛ ┗━┳━┛ ┗━━━━┛ ┗━┳━┛
      ┏━━━┓ ┏━┻━┓ ┏━━━━━━━┓ ┏━┻━┓ ┏━━━┓         ┃            ┃           ┃            ┃
q1: ──┨ H ┠─┨╺╋╸┠─┨ RZ(a) ┠─┨╺╋╸┠─┨ H ┠─────────■────────────╂───────────■────────────╂───↯─
      ┗━━━┛ ┗━━━┛ ┗━━━━━━━┛ ┗━━━┛ ┗━━━┛                      ┃                        ┃
                                                             ┃                        ┃
q2: ─────────────────────────────────────────────────────────■────────────────────────■───↯─
      ┏━━━┓ ┏━━━┓
q0: ──┨ T ┠─┨ H ┠────────────────
      ┗━━━┛ ┗━━━┛
      ┏━━━┓ ┏━━━┓ ┏━━━━┓ ┏━━━┓
q1: ──┨ T ┠─┨╺╋╸┠─┨ T† ┠─┨╺╋╸┠───
      ┗━━━┛ ┗━┳━┛ ┗━━━━┛ ┗━┳━┛
              ┃   ┏━━━┓    ┃
q2: ──────────■───┨ T ┠────■─────
                  ┗━━━┛