-
Notifications
You must be signed in to change notification settings - Fork 131
Autodoc migration for RB #255
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,9 +25,9 @@ | |
|
|
||
|
|
||
| class InterleavedRB(StandardRB): | ||
| """Interleaved Randomized Benchmarking Experiment class. | ||
| """Interleaved randomized benchmarking experiment. | ||
|
|
||
| Overview | ||
| # section: overview | ||
| Interleaved Randomized Benchmarking (RB) is a method | ||
| to estimate the average error-rate of a certain quantum gate. | ||
|
|
||
|
|
@@ -37,24 +37,9 @@ class InterleavedRB(StandardRB): | |
| the ground state, fits the two exponentially decaying curves, and estimates | ||
| the interleaved gate error. See Ref. [1] for details. | ||
|
|
||
| See :class:`InterleavedRBAnalysis` documentation for additional | ||
| information on interleaved RB experiment analysis. | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really want to remove this sentence? Maybe it can be helpful.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need this? Because another dedicated section for analysis class reference is generated and other experiment class doesn't write this. |
||
| # section: reference | ||
| .. ref_arxiv:: 1 1203.4550 | ||
|
|
||
| References | ||
| 1. Easwar Magesan, Jay M. Gambetta, B. R. Johnson, Colm A. Ryan, Jerry M. Chow, | ||
| Seth T. Merkel, Marcus P. da Silva, George A. Keefe, Mary B. Rothwell, Thomas A. Ohki, | ||
| Mark B. Ketchen, M. Steffen, Efficient measurement of quantum gate error by | ||
| interleaved randomized benchmarking, | ||
| `arXiv:quant-ph/1203.4550 <https://arxiv.org/pdf/1203.4550>`_ | ||
|
|
||
| Analysis Class | ||
| :class:`InterleavedRBAnalysis` | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe it's good to refer to the corresponding analysis class
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's automatically generated. |
||
|
|
||
| Experiment Options | ||
| - **lengths**: A list of RB sequences lengths. | ||
| - **num_samples**: Number of samples to generate for each sequence length. | ||
| - **interleaved_element**: The element to interleave, | ||
| given either as a group element or as an instruction/circuit | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why was this section removed?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's automatically generated. |
||
| """ | ||
|
|
||
| # Analysis class for experiment | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.