forked from Budapest-Quantum-Computing-Group/piquasso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
purefock_general_benchmark.py
90 lines (61 loc) · 2.03 KB
/
purefock_general_benchmark.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#
# Copyright 2021-2024 Budapest Quantum Computing Group
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
import piquasso as pq
import strawberryfields as sf
from scipy.stats import unitary_group
pytestmark = pytest.mark.benchmark(
group="pure-fock-general",
)
@pytest.fixture
def alpha():
return 0.1
@pytest.fixture
def r():
return 0.2
@pytest.fixture
def xi():
return 0.3
@pytest.fixture
def cutoff():
return 15
@pytest.fixture
def d():
return 5
def piquasso_benchmark(benchmark, cutoff, r, alpha, xi, d):
@benchmark
def func():
with pq.Program() as program:
pq.Q(all) | pq.Vacuum()
for i in range(d):
pq.Q(i) | pq.Displacement(r=alpha) | pq.Squeezing(r)
pq.Q(all) | pq.Interferometer(unitary_group.rvs(d))
for i in range(d):
pq.Q(i) | pq.Kerr(xi)
simulator_fock = pq.PureFockSimulator(d=d, config=pq.Config(cutoff=cutoff))
simulator_fock.execute(program)
def strawberryfields_benchmark(benchmark, cutoff, r, alpha, xi, d):
@benchmark
def func():
eng = sf.Engine(backend="fock", backend_options={"cutoff_dim": cutoff})
circuit = sf.Program(d)
with circuit.context as q:
for i in range(d):
sf.ops.Dgate(alpha) | q[i]
sf.ops.Sgate(r) | q[i]
sf.ops.Interferometer(unitary_group.rvs(d)) | tuple(q[i] for i in range(d))
for i in range(d):
sf.ops.Kgate(xi) | q[i]
eng.run(circuit)