作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究 Cirq,需要对量子位执行某些酉运算。为此,我在 Cirq 中使用了 MatrixGate()
函数。与 Qiskit 不同,我找不到任何像分解或转译这样的函数来将幺正运算简化为基本的 U3 和 CNOT 门。
例如,如果我想执行以下幺正运算符,
为此,我在 Qiskit 中使用了这段代码。在 Cirq 中寻找等效的东西。
qc=QuantumCircuit(2)
qc.unitary(U,[0,1])
qc=transpile(qc,basis_gates=['cx','u3'])
qc.draw(output='mpl')
使用Qiskit中的Transpile功能后
我什至尝试研究 Qiskit 用来分解这些酉运算的余弦-正弦分解算法。如论文中所述,Quantum Circuits for Isometries ,但它们不会轻易产生所需的分解。请通过以下建议提供帮助:
最佳答案
这种方法的一个例子是 cirq.two_qubit_matrix_to_operations
。它使用 kak 分解(cartan 分解)来确定如何使用最少的 CZ 门将酉矩阵转换为一系列操作。
import cirq
desired_matrix = cirq.testing.random_unitary(dim=4)
synthesized_operations = cirq.two_qubit_matrix_to_operations(
cirq.LineQubit(0),
cirq.LineQubit(1),
desired_matrix,
allow_partial_czs=False,
)
circuit = cirq.Circuit(synthesized_operations)
synthesized_matrix = cirq.unitary(circuit)
cirq.testing.assert_allclose_up_to_global_phase(
desired_matrix,
synthesized_matrix,
atol=1e-4
)
print(desired_matrix.round(3))
print(circuit)
打印(例如):
[[ 0.234-0.169j -0.81 +0.038j -0.327+0.138j -0.364-0.029j]
[-0.503-0.407j 0.221-0.206j 0.063+0.144j -0.629-0.264j]
[ 0.271+0.338j 0.337-0.128j -0.343+0.731j -0.165+0.052j]
[ 0.504+0.236j 0.222+0.269j 0.244-0.371j -0.608-0.043j]]
0: ───PhX(-0.283)^0.631───@───PhX(0.673)^0.5────@───PhX(-0.375)^0.5───@───PhX(0.827)^0.147───Z^-0.269───
│ │ │
1: ───PhX(0.508)^0.338────@───PhX(0.65)^(5/6)───@───PhX(0.65)^0.995───@───PhX(0.302)^0.512───Z^-0.516───
关于linear-algebra - 在 Cirq 中分解量子电路,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61835652/
我是一名优秀的程序员,十分优秀!