Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note on samping overhead to cutting tutorials #249

Merged
merged 10 commits into from
Jun 19, 2023
garrison marked this conversation as resolved.
Show resolved Hide resolved
garrison marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,11 @@
"id": "ba3125fc",
"metadata": {},
"source": [
"### Calculate the sampling overhead for the chosen cuts"
"### Calculate the sampling overhead for the chosen cuts\n",
"\n",
"The sampling overhead is the required number of samples needed to get an expectation value of a target observable within some error, $\\epsilon$. Cutting CNOT and CZ gates incurs a sampling overhead of roughly $O$($9^k$/$\\epsilon^2$), where k is the number of cuts [[Mitarai, Fujii]](https://arxiv.org/abs/1909.07534); however, other gates may have higher or lower exponential bases. For example, the sampling overhead resulting from cutting SWAP gates scales with complexity $O$($49^k$/$\\epsilon^2$) [[Mitarai, Fujii]](https://arxiv.org/abs/2006.11174).\n",
"\n",
"Here we cut three CNOT gates, resulting in a sampling overhead of $9^2$."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,11 @@
"id": "c0acae3a",
"metadata": {},
"source": [
"### Calculate the sampling overhead for the chosen cuts"
"### Calculate the sampling overhead for the chosen cuts\n",
"\n",
"The sampling overhead is the required number of samples needed to get an expectation value of a target observable within some error, $\\epsilon$. Cutting CNOT and CZ gates incurs a sampling overhead of roughly $O$($9^k$/$\\epsilon^2$), where k is the number of cuts [[Mitarai, Fujii]](https://arxiv.org/abs/1909.07534); however, other gates may have higher or lower exponential bases. For example, the sampling overhead resulting from cutting SWAP gates scales with complexity $O$($49^k$/$\\epsilon^2$) [[Mitarai, Fujii]](https://arxiv.org/abs/2006.11174).\n",
"\n",
"Here we cut three CNOT gates, resulting in a sampling overhead of $9^3$."
]
},
{
Expand Down