forked from SRI-International/QC-App-Oriented-Benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmarks-braket.ipynb.template
250 lines (250 loc) · 6.54 KB
/
benchmarks-braket.ipynb.template
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### QED-C Prototype Benchmarks - Braket Version\n",
"The notebook contains a suite of prototype application benchmarks for the Amazon Braket API.\n",
"Configure and run the cell below with the desired execution settings.\n",
"Then execute the remaining cells, each containing one prototype benchmark program."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Default Benchmark Parameters\n",
"min_qubits=2\n",
"max_qubits=8\n",
"max_circuits=3\n",
"num_shots=100\n",
"\n",
"backend_id = \"simulator\"\n",
"\n",
"# # *** To run benchmarks in Braket, you must have an Amazon Braket account\n",
"# # Set your access key, default region and S3 info here, or set in shell variables before starting notebook\n",
"# import os\n",
"# os.environ[\"AWS_ACCESS_KEY_ID\"] = \"YOUR_AWS_ACCESS_KEY_ID\"\n",
"# os.environ[\"AWS_SECRET_ACCESS_KEY\"] = \"YOUR_AWS_SECRET_ACCESS_KEY\"\n",
"# os.environ[\"AWS_DEFAULT_REGION\"] = \"YOUR_AWS_DEFAULT_REGION\"\n",
"# os.environ[\"AWS_BRAKET_S3_BUCKET\"] = \"YOUR_AWS_BRAKET_S3_BUCKET\"\n",
"# os.environ[\"AWS_BRAKET_S3_PREFIX\"] = \"YOUR_AWS_BRAKET_S3_PREFIX\"\n",
"\n",
"# # *** Select a managed device on which to run the benchmarks\n",
"# backend_id = \"arn:aws:braket:::device/quantum-simulator/amazon/sv1\"\n",
"# backend_id = \"arn:aws:braket:::device/qpu/rigetti/Aspen-9\"\n",
"# backend_id = \"arn:aws:braket:::device/qpu/ionq/ionQdevice\"\n",
"\n",
"# # *** Uncomment these to override benchmark parameters here if you like\n",
"# # (typically to use smaller numbers for quantum hardware devices, to minimize costs)\n",
"# min_qubits=2\n",
"# max_qubits=5\n",
"# max_circuits=1\n",
"# num_shots=50"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Deutsch-Jozsa"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"deutsch-jozsa/braket\")\n",
"import dj_benchmark\n",
"dj_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots,\n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Bernstein-Vazirani"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"bernstein-vazirani/braket\")\n",
"import bv_benchmark\n",
"bv_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots,\n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Hidden Shift"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"hidden-shift/braket\")\n",
"import hs_benchmark\n",
"hs_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots, \n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Quantum Fourier Transform - Method 1"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"quantum-fourier-transform/braket\")\n",
"import qft_benchmark\n",
"qft_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots,\n",
" method=1,\n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Quantum Fourier Transform - Method 2"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"quantum-fourier-transform/braket\")\n",
"import qft_benchmark\n",
"qft_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots,\n",
" method=2,\n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Grover"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"grovers/braket\")\n",
"import grovers_benchmark \n",
"grovers_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots,\n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Phase Estimation"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"phase-estimation/braket\")\n",
"import pe_benchmark\n",
"pe_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits, max_circuits=max_circuits, num_shots=num_shots,\n",
" backend_id=backend_id)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Hamiltonian Simulation"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import sys\n",
"sys.path.insert(1, \"hamiltonian-simulation/braket\")\n",
"import hamiltonian_simulation_benchmark\n",
"hamiltonian_simulation_benchmark.run(min_qubits=min_qubits, max_qubits=max_qubits,\n",
" max_circuits=max_circuits, num_shots=num_shots,\n",
" backend_id=backend_id)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.5"
}
},
"nbformat": 4,
"nbformat_minor": 4
}