File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,16 @@ Changed
17
17
- 使用openblas进行矩阵运算。
18
18
- 使用sleef进行CPU SIMD运算。
19
19
- 删除qnn.MeasurePauliSum。
20
- - 当torch低于2.4版本时候 ,使用torch后端计算抛出警告。
20
+ - 当torch低于2.4.0版本时候 ,使用torch后端计算抛出警告。
21
21
22
22
23
23
Fixed
24
24
===================
25
- - 解决保存和载入模型时候QMachine states问题 。
25
+ - 解决保存和载入模型时候QMachine states无法载入的问题 。
26
26
- 解决layernorm,groupnorm当affine=False时候的问题。
27
- - 解决QuantumLayerAdjoint在eval模式下的问题。
28
- - 解决toCPU() 的bug。
27
+ - 解决 QuantumLayerAdjoint在eval模式下的问题。
28
+ - 解决 `toCPU() ` 的bug。
29
+ - 解决 BatchNorm1d,BatchNorm2d, BatchNormNd 在affine=False 的bug。
29
30
30
31
[v2.16.0] - 2025-1-15
31
32
***************************
Original file line number Diff line number Diff line change @@ -1109,6 +1109,7 @@ BasicEntanglerTemplate
1109
1109
1110
1110
circuit = BasicEntanglerTemplate(weights=weights, num_qubits=num_qubits, rotation=pq.RZ)
1111
1111
result = circuit.compute_circuit()
1112
+ cir = circuit.create_circuit(qubits)
1112
1113
circuit.print_circuit(qubits)
1113
1114
1114
1115
@@ -1144,7 +1145,7 @@ StronglyEntanglingTemplate
1144
1145
1145
1146
circuit = StronglyEntanglingTemplate(weights, num_qubits=num_qubits )
1146
1147
result = circuit.compute_circuit()
1147
- print(result )
1148
+ cir = circuit.create_circuit(qubits )
1148
1149
circuit.print_circuit(qubits)
1149
1150
1150
1151
You can’t perform that action at this time.
0 commit comments