mindquantum.algorithm.compiler.compile_circuit
- mindquantum.algorithm.compiler.compile_circuit(compiler: BasicCompilerRule, circ: 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 ┠────■───── ┗━━━┛