Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Quantum
提交
1a795946
Q
Quantum
项目概览
PaddlePaddle
/
Quantum
大约 1 年 前同步成功
通知
20
Star
492
Fork
166
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
5
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
Quantum
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
5
Issue
5
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
1a795946
编写于
11月 05, 2021
作者:
Y
yangguohao
提交者:
GitHub
11月 05, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update trotter.py
上级
f0c60d50
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
2 addition
and
29 deletion
+2
-29
paddle_quantum/trotter.py
paddle_quantum/trotter.py
+2
-29
未找到文件。
paddle_quantum/trotter.py
浏览文件 @
1a795946
...
@@ -310,33 +310,6 @@ def __add_higher_order_trotter_block(circuit, tau, grouped_hamiltonian, order):
...
@@ -310,33 +310,6 @@ def __add_higher_order_trotter_block(circuit, tau, grouped_hamiltonian, order):
for
p
in
p_values
:
for
p
in
p_values
:
__add_second_order_trotter_block
(
circuit
,
p
*
tau
,
grouped_hamiltonian
)
__add_second_order_trotter_block
(
circuit
,
p
*
tau
,
grouped_hamiltonian
)
def
add_optimize_circuit_gate
(
gate
,
theta
,
pauli_word
,
which_qubits
):
r
""" 添加一个优化后的门电路,其pauli_word的形式主要为: 'XXYYZZ'的优化电路
Args:
circuit (UAnsatz): 需要添加门的电路
theta (tensor or float): 旋转角度
pauli_word (str): 泡利算符组成的字符串,例如 ``"XXZ"``
which_qubits (list or np.ndarray): ``pauli_word`` 中的每个算符所作用的量子比特编号
"""
theta
=
np
.
pi
/
2
x
,
y
,
z
=
1
,
1
,
1
g
,
a
,
b
=
z
,(
2
*
x
-
1
)
*
np
.
pi
/
2
-
x
,(
2
*
y
-
1
)
*
np
.
pi
/
2
-
y
alpha
=
paddle
.
to_tensor
(
theta
-
2
*
a
,
dtype
=
'float64'
)
beta
=
paddle
.
to_tensor
(
2
*
b
-
theta
,
dtype
=
'float64'
)
gamma
=
paddle
.
to_tensor
(
2
*
g
-
theta
,
dtype
=
'float64'
)
param
=
[
gamma
,
alpha
,
beta
]
#print(param)
p1
=
paddle
.
to_tensor
(
theta
,
dtype
=
'float64'
)
p2
=
paddle
.
to_tensor
(
-
theta
,
dtype
=
'float64'
)
cir
.
rz
(
p1
,
1
)
cir
.
cnot
([
1
,
0
])
cir
.
rz
(
param
[
0
],
0
)
cir
.
ry
(
param
[
1
],
1
)
cir
.
cnot
([
0
,
1
])
cir
.
ry
(
param
[
2
],
1
)
cir
.
cnot
([
1
,
0
])
cir
.
rz
(
p2
,
0
)
def
add_n_pauli_gate
(
circuit
,
theta
,
pauli_word
,
which_qubits
):
def
add_n_pauli_gate
(
circuit
,
theta
,
pauli_word
,
which_qubits
):
r
""" 添加一个对应着 N 个泡利算符张量积的旋转门,例如 :math:`e^{-\theta/2 * X \otimes I \otimes X \otimes Y}`
r
""" 添加一个对应着 N 个泡利算符张量积的旋转门,例如 :math:`e^{-\theta/2 * X \otimes I \otimes X \otimes Y}`
...
@@ -393,7 +366,7 @@ def add_n_pauli_gate(circuit, theta, pauli_word, which_qubits):
...
@@ -393,7 +366,7 @@ def add_n_pauli_gate(circuit, theta, pauli_word, which_qubits):
elif
re
.
match
(
r
'Y'
,
pauli_word
[
qubit_index
],
flags
=
re
.
I
):
elif
re
.
match
(
r
'Y'
,
pauli_word
[
qubit_index
],
flags
=
re
.
I
):
circuit
.
rx
(
-
PI
/
2
,
which_qubits
[
qubit_index
])
circuit
.
rx
(
-
PI
/
2
,
which_qubits
[
qubit_index
])
def
add_
optimal_circuit
(
circuit
,
theta
,
which_qubits
):
def
optimal_circuit
(
circuit
,
theta
,
which_qubits
):
r
""" 添加一个优化电路,哈密顿量为'XXYYZZ'`
r
""" 添加一个优化电路,哈密顿量为'XXYYZZ'`
Args:
Args:
...
@@ -418,7 +391,7 @@ def add_optimal_circuit(circuit,theta,which_qubits):
...
@@ -418,7 +391,7 @@ def add_optimal_circuit(circuit,theta,which_qubits):
circuit
.
rz
(
paddle
.
to_tensor
(
-
p
,
dtype
=
'float64'
),
a
)
circuit
.
rz
(
paddle
.
to_tensor
(
-
p
,
dtype
=
'float64'
),
a
)
def
__group_hamiltonian_optimal
(
hamiltonian
):
def
__group_hamiltonian_optimal
(
hamiltonian
):
r
""" 将哈密顿量
拆分成 XXYYZZ 为组合
,以及剩余项两个部分,并返回由他们组成的列表
r
""" 将哈密顿量
组合成 XXYYZZ 的形式
,以及剩余项两个部分,并返回由他们组成的列表
Args:
Args:
hamiltonian (Hamiltonian): Paddle Quantum 中的 Hamiltonian 类
hamiltonian (Hamiltonian): Paddle Quantum 中的 Hamiltonian 类
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录