Skip to content

Commit dfc6817

Browse files
author
Arthur Kurlej
committed
update to 1.3.7
1 parent 67c9ce0 commit dfc6817

File tree

93 files changed

+17607
-2534
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+17607
-2534
lines changed

Examples/Algorithms_and_Infrastructure/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ Demonstrates how derived instances of the ProblemInstance class can be used to f
1212
### qsvt_and_qsp.ipynb
1313
Provides additional context for our QSP/QET/QSVT tools, including their use with arbitrary Hamiltonians.
1414

15+
### scheduling_example.ipynb
16+
Demonstrates how we build a Quantum Circuit and then use our internal Scheduler to create time-accurate, resource reliant circuit execution and advanced parallelism analysis.
17+
18+
### hardware_resource_estimation.ipynb
19+
Demonstrates how we take a Hamiltonian Circuit and perform both logical and hardware profile specific resource estimation. We use Microsoft's Azure|trade| to perform the Hardware Estimate.

Examples/Algorithms_and_Infrastructure/advanced_decomposition_examples.ipynb

Lines changed: 308 additions & 0 deletions
Large diffs are not rendered by default.
983 Bytes
Loading
1.28 KB
Loading
2.44 KB
Loading
2.24 KB
Loading
1.41 KB
Loading

Examples/Algorithms_and_Infrastructure/problem_instances.ipynb

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
{
5757
"cell_type": "code",
58-
"execution_count": 27,
58+
"execution_count": 1,
5959
"metadata": {},
6060
"outputs": [],
6161
"source": [
@@ -1162,23 +1162,22 @@
11621162
},
11631163
{
11641164
"cell_type": "code",
1165-
"execution_count": 47,
1165+
"execution_count": 3,
11661166
"metadata": {},
11671167
"outputs": [
11681168
{
11691169
"name": "stdout",
11701170
"output_type": "stream",
11711171
"text": [
1172-
"Unable to open ../Examples/ApplicationInstances/PeriodicChemistry/example.ham.hdf5 and ../Examples/ApplicationInstances/PeriodicChemistry/example.grid.hdf5. Check filename and path. To generate new hdf5 files see 'pest-intro.ipynb' \n",
11731172
"ElectronicStructure\n",
1174-
"\tHamiltonian filename:../Examples/ApplicationInstances/PeriodicChemistry/example.ham.hdf5\tGrid filename:../Examples/ApplicationInstances/PeriodicChemistry/example.grid.hdf5\n",
1175-
"\tN:0\tM_vals:[0 0 0]\n"
1173+
"\tHamiltonian filename:../ApplicationInstances/PeriodicChemistry/example.ham.hdf5\tGrid filename:../ApplicationInstances/PeriodicChemistry/example.grid.hdf5\n",
1174+
"\tN:27\tM_vals:[3 3 3]\n"
11761175
]
11771176
}
11781177
],
11791178
"source": [
1180-
"example_ham_filename = \"../Examples/ApplicationInstances/PeriodicChemistry/example.ham.hdf5\"\n",
1181-
"example_grid_filename = \"../Examples/ApplicationInstances/PeriodicChemistry/example.grid.hdf5\"\n",
1179+
"example_ham_filename = \"../ApplicationInstances/PeriodicChemistry/example.ham.hdf5\"\n",
1180+
"example_grid_filename = \"../ApplicationInstances/PeriodicChemistry/example.grid.hdf5\"\n",
11821181
"model = getInstance('ElectronicStructure',filenameH=example_ham_filename,filenameG=example_grid_filename)\n",
11831182
"print(model)"
11841183
]
@@ -1281,7 +1280,7 @@
12811280
],
12821281
"metadata": {
12831282
"kernelspec": {
1284-
"display_name": "Python 3 (ipykernel)",
1283+
"display_name": "pyL-current",
12851284
"language": "python",
12861285
"name": "python3"
12871286
},
@@ -1295,7 +1294,7 @@
12951294
"name": "python",
12961295
"nbconvert_exporter": "python",
12971296
"pygments_lexer": "ipython3",
1298-
"version": "3.10.12"
1297+
"version": "3.11.5"
12991298
}
13001299
},
13011300
"nbformat": 4,

Examples/Algorithms_and_Infrastructure/scheduling_example.ipynb

Lines changed: 198 additions & 55 deletions
Large diffs are not rendered by default.

Examples/ApplicationInstances/FermiHubbard/fermi_hubbard-dynamics-qubitized.ipynb

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,12 @@
165165
},
166166
{
167167
"cell_type": "code",
168-
"execution_count": 1,
169-
"metadata": {},
168+
"execution_count": null,
169+
"metadata": {
170+
"tags": [
171+
"imports"
172+
]
173+
},
170174
"outputs": [],
171175
"source": [
172176
"\n",
@@ -217,8 +221,12 @@
217221
},
218222
{
219223
"cell_type": "code",
220-
"execution_count": 2,
221-
"metadata": {},
224+
"execution_count": 3,
225+
"metadata": {
226+
"tags": [
227+
"getInstance"
228+
]
229+
},
222230
"outputs": [],
223231
"source": [
224232
"J = -1.0; N = 2 \n",
@@ -236,8 +244,10 @@
236244
},
237245
{
238246
"cell_type": "code",
239-
"execution_count": 3,
240-
"metadata": {},
247+
"execution_count": 4,
248+
"metadata": {
249+
"tags": []
250+
},
241251
"outputs": [
242252
{
243253
"data": {
@@ -263,8 +273,12 @@
263273
},
264274
{
265275
"cell_type": "code",
266-
"execution_count": 4,
267-
"metadata": {},
276+
"execution_count": 5,
277+
"metadata": {
278+
"tags": [
279+
"blockEncoding"
280+
]
281+
},
268282
"outputs": [],
269283
"source": [
270284
"block_encoding = getEncoding(VALID_ENCODINGS.FermiHubbardSquare)(model)"
@@ -279,8 +293,10 @@
279293
},
280294
{
281295
"cell_type": "code",
282-
"execution_count": 5,
283-
"metadata": {},
296+
"execution_count": 6,
297+
"metadata": {
298+
"tags": []
299+
},
284300
"outputs": [],
285301
"source": [
286302
"alpha = block_encoding.alpha"

0 commit comments

Comments
 (0)