iqm-benchmarks 2.27__py3-none-any.whl → 2.29__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of iqm-benchmarks might be problematic. Click here for more details.
- iqm/benchmarks/__init__.py +2 -0
- iqm/benchmarks/entanglement/__init__.py +2 -1
- iqm/benchmarks/entanglement/graph_states.py +1350 -0
- iqm/benchmarks/quantum_volume/quantum_volume.py +3 -6
- iqm/benchmarks/randomized_benchmarking/randomized_benchmarking_common.py +33 -8
- iqm/benchmarks/utils.py +276 -194
- iqm/benchmarks/utils_plots.py +232 -0
- iqm/benchmarks/utils_shadows.py +228 -0
- {iqm_benchmarks-2.27.dist-info → iqm_benchmarks-2.29.dist-info}/METADATA +2 -1
- {iqm_benchmarks-2.27.dist-info → iqm_benchmarks-2.29.dist-info}/RECORD +13 -10
- {iqm_benchmarks-2.27.dist-info → iqm_benchmarks-2.29.dist-info}/WHEEL +1 -1
- {iqm_benchmarks-2.27.dist-info → iqm_benchmarks-2.29.dist-info}/licenses/LICENSE +0 -0
- {iqm_benchmarks-2.27.dist-info → iqm_benchmarks-2.29.dist-info}/top_level.txt +0 -0
iqm/benchmarks/__init__.py
CHANGED
|
@@ -27,6 +27,7 @@ from .benchmark_definition import (
|
|
|
27
27
|
)
|
|
28
28
|
from .circuit_containers import BenchmarkCircuit, CircuitGroup, Circuits
|
|
29
29
|
from .entanglement.ghz import GHZBenchmark, GHZConfiguration
|
|
30
|
+
from .entanglement.graph_states import GraphStateBenchmark, GraphStateConfiguration
|
|
30
31
|
from .optimization.qscore import QScoreBenchmark, QScoreConfiguration
|
|
31
32
|
from .quantum_volume.clops import CLOPSBenchmark, CLOPSConfiguration
|
|
32
33
|
from .quantum_volume.quantum_volume import QuantumVolumeBenchmark, QuantumVolumeConfiguration
|
|
@@ -46,6 +47,7 @@ AVAILABLE_BENCHMARKS = {
|
|
|
46
47
|
InterleavedRandomizedBenchmarking.name: InterleavedRandomizedBenchmarking,
|
|
47
48
|
MirrorRandomizedBenchmarking.name: MirrorRandomizedBenchmarking,
|
|
48
49
|
QScoreBenchmark.name: QScoreBenchmark,
|
|
50
|
+
GraphStateBenchmark.name: GraphStateBenchmark,
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
try:
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
"""
|
|
15
15
|
GHZ verifies the generation of Greenberger-Horne-Zeilinger states
|
|
16
|
+
Graph State estimates the amount of bipartite entanglement of native graph states
|
|
16
17
|
"""
|
|
17
18
|
|
|
18
|
-
from . import ghz
|
|
19
|
+
from . import ghz, graph_states
|