New algorithm for generating Clifford circuits for single qubit. #2
Merged
Conversation
…enerate once all 24 transpiled Cliffords. Then, for every rb_circuit, select Cliffords at random and compose them to a circuit
…. Added parameter to all calls to compose to use inplace=True. Removed redundant method generate_all_transpiled_clifford_circuits
Owner
Author
|
There is a difference between the EPC computed by this branch as compared to the existing rb_experiment. This must be investigated. |
…use front=True, because I assume front=False when creating the circuits
… the previous version of rb_experiment.
Owner
Author
Owner
Author
|
@dekel.meirom ran a comparison between the RB version in this PR and QC code on Bangkok. The experiment consists of circuits with |
Owner
Author
|
A few comments on future work:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
We generate all 24 transpiled Cliffords once (in the basis {rz, sx}. Then, for every rb_circuit, select Cliffords at random and compose them to a circuit
Details and comments
Current version is faster than the original version. The main change I made since the previous version, is adding the parameter
inplaceto theQuantumCircuit.compose()operation. This uses the existing circuit, rather than copying to a new circuit.For benchmarking, I ran the test
test.randomized_benchmarking.test_randomized_benchmarking.TestStandardRB.test_single_qubitfrom the test suite. Here are a few measurements (average of 5 runs):With
num_samples = 1, existing rb_experiment: time = 1.2374 secthis branch: time = 0.7710 sec
With
num_samples = 10existing rb_experiment: time = 8.3614 secthis branch: time = 1.2056 sec