iqm-benchmarks 2.27__py3-none-any.whl → 2.28__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.

@@ -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