Amit commited on
Commit
aac0cfe
·
1 Parent(s): d2fd675

IPython notebooks updated.

Browse files
Files changed (2) hide show
  1. expectation_plots.ipynb +151 -0
  2. plots_display_all.ipynb +0 -0
expectation_plots.ipynb ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "id": "759c5651",
7
+ "metadata": {},
8
+ "outputs": [
9
+ {
10
+ "data": {
11
+ "application/mercury+json": "{\n \"widget\": \"App\",\n \"title\": \"Benchmark Validation\",\n \"description\": \"Verifying via expectation values\",\n \"show_code\": false,\n \"show_prompt\": false,\n \"output\": \"app\",\n \"schedule\": \"\",\n \"notify\": \"{}\",\n \"continuous_update\": true,\n \"static_notebook\": false,\n \"show_sidebar\": true,\n \"full_screen\": true,\n \"allow_download\": true,\n \"model_id\": \"mercury-app\",\n \"code_uid\": \"App.0.40.24.2-rande7532f59\"\n}",
12
+ "text/html": [
13
+ "<h3>Mercury Application</h3><small>This output won't appear in the web app.</small>"
14
+ ],
15
+ "text/plain": [
16
+ "mercury.App"
17
+ ]
18
+ },
19
+ "metadata": {},
20
+ "output_type": "display_data"
21
+ }
22
+ ],
23
+ "source": [
24
+ "import mercury as mr\n",
25
+ "app = mr.App(title=\"Benchmark Validation\", description=\"Verifying via expectation values\", show_code=False)"
26
+ ]
27
+ },
28
+ {
29
+ "cell_type": "code",
30
+ "execution_count": 2,
31
+ "id": "4b52e890",
32
+ "metadata": {},
33
+ "outputs": [
34
+ {
35
+ "data": {
36
+ "application/mercury+json": "{\n \"widget\": \"Checkbox\",\n \"value\": false,\n \"label\": \"Compare expectation\",\n \"model_id\": \"2532108ccea14af8833212746bf3402b\",\n \"code_uid\": \"Checkbox.0.40.11.1-randbd089dbd\",\n \"url_key\": \"\",\n \"disabled\": false,\n \"hidden\": false\n}",
37
+ "application/vnd.jupyter.widget-view+json": {
38
+ "model_id": "2532108ccea14af8833212746bf3402b",
39
+ "version_major": 2,
40
+ "version_minor": 0
41
+ },
42
+ "text/plain": [
43
+ "mercury.Checkbox"
44
+ ]
45
+ },
46
+ "metadata": {},
47
+ "output_type": "display_data"
48
+ },
49
+ {
50
+ "data": {
51
+ "text/markdown": [
52
+ "# Validation of precision and Verification of benchmarks\n",
53
+ " \n",
54
+ "The plots present the sum (over all sites) of the difference in expectation value of Pauli-Z between \n",
55
+ "different pacakges. These validate the precision while also verifying that the evolved statevector at the final \n",
56
+ "time remains the same across the different packages.\n",
57
+ "\n",
58
+ "###### Note: Not all packages support the computation of expectation values (however it is possible to arrive at an approximation using the shot measurement) and therefore are not included in the analysis.\n"
59
+ ],
60
+ "text/plain": [
61
+ "<IPython.core.display.Markdown object>"
62
+ ]
63
+ },
64
+ "metadata": {},
65
+ "output_type": "display_data"
66
+ }
67
+ ],
68
+ "source": [
69
+ "compare_expect = mr.Checkbox(value=False, label=\"Compare expectation\")\n",
70
+ "if compare_expect.value == False:\n",
71
+ " mr.Markdown(text=\"\"\"# Validation of precision and Verification of benchmarks\n",
72
+ " \n",
73
+ "The plots present the sum (over all sites) of the difference in expectation value of Pauli-Z between \n",
74
+ "different pacakges. These validate the precision while also verifying that the evolved statevector at the final \n",
75
+ "time remains the same across the different packages.\n",
76
+ "\n",
77
+ "###### Note: Not all packages support the computation of expectation values (however it is possible to arrive at an approximation using the shot measurement) and therefore are not included in the analysis.\n",
78
+ "\"\"\")"
79
+ ]
80
+ },
81
+ {
82
+ "cell_type": "code",
83
+ "execution_count": 3,
84
+ "id": "1ef997b9",
85
+ "metadata": {},
86
+ "outputs": [],
87
+ "source": [
88
+ "if compare_expect.value == True:\n",
89
+ " import numpy as np\n",
90
+ " import h5py\n",
91
+ " import os\n",
92
+ "\n",
93
+ " import sys\n",
94
+ " sys.path.append('/plot_scripts/')\n",
95
+ " from compare_expectation import *\n",
96
+ " \n",
97
+ " task = mr.Select(label=\"Select Task: \", value=\"Heisenberg dynamics\", choices=[\"Heisenberg dynamics\", \"Random Quantum Circuit\", \"Quantum Fourier Transform\"])\n",
98
+ "\n",
99
+ " prec = mr.Select(label=\"Select Precision : \", value=\"Single\", choices=[\"Single\", \"Double\"])\n",
100
+ " \n",
101
+ " mr.Md(f\"\"\"### Difference in Pauli-Z expectation value among packages summed over all sites for \n",
102
+ "##### Quantum Algorithm: {task.value}\n",
103
+ "\n",
104
+ "##### Precision: {prec.value}\n",
105
+ "\"\"\")\n",
106
+ " \n",
107
+ " if task.value == 'Heisenberg dynamics':\n",
108
+ " t = 'hdyn'\n",
109
+ " elif task.value == 'Random Quantum Circuit':\n",
110
+ " t = 'rqc'\n",
111
+ " else:\n",
112
+ " t = 'qft'\n",
113
+ " \n",
114
+ " if prec.value == 'Single':\n",
115
+ " compare_two_expect_all(t, 'sp', sorted_package_str_sp)\n",
116
+ " else:\n",
117
+ " compare_two_expect_all(t, 'dp', sorted_package_str_dp)\n",
118
+ " "
119
+ ]
120
+ },
121
+ {
122
+ "cell_type": "code",
123
+ "execution_count": null,
124
+ "id": "60c0ee94",
125
+ "metadata": {},
126
+ "outputs": [],
127
+ "source": []
128
+ }
129
+ ],
130
+ "metadata": {
131
+ "kernelspec": {
132
+ "display_name": "Python 3 (ipykernel)",
133
+ "language": "python",
134
+ "name": "python3"
135
+ },
136
+ "language_info": {
137
+ "codemirror_mode": {
138
+ "name": "ipython",
139
+ "version": 3
140
+ },
141
+ "file_extension": ".py",
142
+ "mimetype": "text/x-python",
143
+ "name": "python",
144
+ "nbconvert_exporter": "python",
145
+ "pygments_lexer": "ipython3",
146
+ "version": "3.9.12"
147
+ }
148
+ },
149
+ "nbformat": 4,
150
+ "nbformat_minor": 5
151
+ }
plots_display_all.ipynb CHANGED
The diff for this file is too large to render. See raw diff