Skip to content
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

add benchmark classes to benchmarks.__init__ #947

Merged
merged 1 commit into from
May 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions supermarq-benchmarks/supermarq/benchmarks/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from . import (
bit_code,
ghz,
hamiltonian_simulation,
mermin_bell,
phase_code,
qaoa_fermionic_swap_proxy,
qaoa_vanilla_proxy,
vqe_proxy,
)
from .bit_code import BitCode
from .ghz import GHZ
from .hamiltonian_simulation import HamiltonianSimulation
from .mermin_bell import MerminBell
from .phase_code import PhaseCode
from .qaoa_fermionic_swap_proxy import QAOAFermionicSwapProxy
from .qaoa_vanilla_proxy import QAOAVanillaProxy
from .vqe_proxy import VQEProxy

__all__ = [
"BitCode",
"GHZ",
"HamiltonianSimulation",
"MerminBell",
"PhaseCode",
"QAOAFermionicSwapProxy",
"QAOAVanillaProxy",
"VQEProxy",
"bit_code",
"ghz",
"hamiltonian_simulation",
"mermin_bell",
"phase_code",
"qaoa_fermionic_swap_proxy",
"qaoa_vanilla_proxy",
"vqe_proxy",
]
Loading