Skip to content

Commit

Permalink
text
Browse files Browse the repository at this point in the history
  • Loading branch information
beckykd committed Nov 5, 2024
1 parent e285fa0 commit 3e14039
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions docs/guides/debug-qiskit-runtime-jobs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,18 @@
"id": "7f4a6891-3506-4f20-995c-08666ef791d9",
"metadata": {},
"source": [
"### Example\n",
"We want to explore different options for dealing with gate errors, and we try:\n",
"- doing nothing\n",
"- doing twirling\n",
"- doing PEA\n",
"We keep measurement twirling and mitigation on for all the jobs to hide their contribution to the overall noise level"
"- No error correction\n",
"- Gate twirling\n",
"- PEA\n",
"Each job in this exploration uses measurement twirling and mitigation to hide their contribution to the overall noise level."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Job with no error correction"
]
},
{
Expand All @@ -289,6 +295,13 @@
"result = job.result()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Job with gate twirling"
]
},
{
"cell_type": "code",
"execution_count": 17,
Expand Down Expand Up @@ -330,7 +343,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"PEA requires to specify a set of noise amplification factors.\n",
"### Job with PEA\n",
"What choice of noise amplification factors is best for my problem?"
]
},
Expand All @@ -340,6 +353,7 @@
"metadata": {},
"outputs": [],
"source": [
"# For PEA, we must specify a set of noise amplification factors\n",
"noise_factors = [\n",
" [1, 1.1],\n",
" [1, 1.1, 1.2],\n",
Expand Down

0 comments on commit 3e14039

Please sign in to comment.