-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In preparation for the XEB/IRB benchmarking routines, this PR implements some common functionality that can form the basis of a wide QCVV framework within superstaq.
- Loading branch information
Showing
10 changed files
with
1,642 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
QCVV: Quantum Characterisation, Validation and Verification | ||
=========================================================== | ||
|
||
The Supermarq QCVV library provides a customizable toolkit for testing and characterizing | ||
quantum devices. The toolkit can either be used with simulators or on live devices. | ||
|
||
For a demonstration of how to implement a new experiment take a look at the following notebook | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
qcvv_css |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
cirq-superstaq~=0.5.23 | ||
qiskit-superstaq~=0.5.23 | ||
scikit-learn>=1.0 | ||
seaborn>=0.13.2 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""A toolkit of QCVV routines.""" | ||
|
||
from .base_experiment import BenchmarkingExperiment, BenchmarkingResults, Sample | ||
|
||
__all__ = ["BenchmarkingExperiment", "BenchmarkingResults", "Sample"] |
Oops, something went wrong.