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

Support BackendV2 #1875

Merged
merged 31 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0c66d28
Support backendv2
hitomitak Jul 12, 2023
aca5764
Merge main
hitomitak Jul 12, 2023
5bfc309
Change API of aerbackend init
hitomitak Jul 18, 2023
7665200
fix lint
hitomitak Jul 18, 2023
2ff6c09
Fix lint
hitomitak Jul 18, 2023
67232e4
Add reset gate
hitomitak Jul 20, 2023
3a8f6f1
Return None if the configuration does not have max_experiments
hitomitak Jul 21, 2023
dc9ab4c
Change function to constant
hitomitak Jul 21, 2023
1b53e50
Update code to pass the test
hitomitak Aug 8, 2023
57060c1
Remove print
hitomitak Aug 8, 2023
8d134cb
Fix lint
hitomitak Aug 8, 2023
21f9d79
Merge branch 'main' into backendv2
hitomitak Aug 8, 2023
7e5472e
Merge branch 'main' into backendv2
hitomitak Aug 22, 2023
9366882
Change num of qubits in Estimator
hitomitak Aug 25, 2023
2f875e7
Merge branch 'main' into backendv2
hitomitak Aug 25, 2023
9e58631
Skip transpilation
hitomitak Aug 25, 2023
5957121
Merge branch 'backendv2' of github.com:hitomitak/qiskit-aer into back…
hitomitak Aug 25, 2023
05b99e8
Change transpile optimization level
hitomitak Sep 4, 2023
e7f3687
Merge branch 'main' into backendv2
hitomitak Sep 8, 2023
69a1fdc
Add release notes
hitomitak Sep 8, 2023
2826216
Change process of cirucit compose by the number of qubits in estimator
hitomitak Sep 15, 2023
8838291
use passmanager for measurement circuits
ikkoham Sep 27, 2023
bda6dbf
refactor (change line order)
ikkoham Oct 2, 2023
e1dbac7
Merge pull request #3 from ikkoham/backendv2
hitomitak Oct 2, 2023
3cdc35f
Fix lint
hitomitak Oct 2, 2023
f179c2c
Merge branch 'main' into backendv2
hhorii Oct 13, 2023
858794c
Merge branch 'main' into backendv2
hhorii Oct 19, 2023
945b320
Merge branch 'main' into backendv2
doichanj Oct 20, 2023
c6a5621
Add a detail description to the release note
hitomitak Oct 23, 2023
b41631a
Merge branch 'main' into backendv2
doichanj Oct 24, 2023
6075b9f
Merge branch 'main' into backendv2
mtreinish Oct 25, 2023
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
7 changes: 4 additions & 3 deletions qiskit_aer/backends/aer_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
BASIS_GATES,
)

# pylint: disable=import-error, no-name-in-module
# pylint: disable=import-error, no-name-in-module, abstract-method
from .controller_wrappers import aer_controller_execute

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -776,7 +776,7 @@ def __repr__(self):
pad = " " * (len(self.__class__.__name__) + 1)
return f"{display[:-1]}\n{pad}noise_model={repr(noise_model)})"

def name(self):
def _name(self):
"""Format backend name string for simulator"""
name = self._configuration.backend_name
method = getattr(self.options, "method", None)
Expand Down Expand Up @@ -805,6 +805,7 @@ def from_backend(cls, backend, **options):
max_shots=int(1e6),
coupling_map=list(backend.coupling_map.get_edges()),
max_experiments=backend.max_circuits,
description=backend.description,
)
properties = target_to_backend_properties(backend.target)
elif isinstance(backend, BackendV1):
Expand Down Expand Up @@ -858,7 +859,7 @@ def configuration(self):
]
config.basis_gates = self._cached_basis_gates + config.custom_instructions
# Update simulator name
config.backend_name = self.name()
config.backend_name = self._name()
return config

def _execute_circuits(self, aer_circuits, noise_model, config):
Expand Down
44 changes: 32 additions & 12 deletions qiskit_aer/backends/aerbackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

from qiskit.circuit import QuantumCircuit, ParameterExpression, Delay
from qiskit.compiler import assemble
from qiskit.providers import BackendV1 as Backend
from qiskit.providers import BackendV2 as Backend
from qiskit.providers import convert_to_target
from qiskit.providers.models import BackendStatus
from qiskit.pulse import Schedule, ScheduleBlock
from qiskit.qobj import QasmQobj, PulseQobj
Expand All @@ -34,8 +35,9 @@
from ..noise.errors.quantum_error import QuantumChannelInstruction
from .aer_compiler import compile_circuit, assemble_circuits, generate_aer_config
from .backend_utils import format_save_type, circuit_optypes
from .name_mapping import NAME_MAPPING

# pylint: disable=import-error, no-name-in-module
# pylint: disable=import-error, no-name-in-module, abstract-method
from .controller_wrappers import AerConfig

# Logger
Expand Down Expand Up @@ -67,16 +69,24 @@ def __init__(
# Init configuration and provider in Backend
configuration.simulator = True
configuration.local = True
super().__init__(configuration, provider=provider)
super().__init__(
provider=provider,
name=configuration.backend_name,
description=configuration.description,
backend_version=configuration.backend_version,
)

# Initialize backend properties and pulse defaults.
self._properties = properties
self._defaults = defaults
self._configuration = configuration

# Custom option values for config, properties, and defaults
self._options_configuration = {}
self._options_defaults = {}
self._options_properties = {}
self._target = None
self._mapping = NAME_MAPPING

# Set options from backend_options dictionary
if backend_options is not None:
Expand Down Expand Up @@ -332,9 +342,19 @@ def defaults(self):
setattr(defaults, key, val)
return defaults

@classmethod
def _default_options(cls):
pass
@property
def max_circuits(self):
if hasattr(self.configuration(), "max_experiments"):
return self.configuration().max_experiments
else:
return None

@property
def target(self):
self._target = convert_to_target(
self.configuration(), self.properties(), self.defaults(), self._mapping
)
return self._target

def clear_options(self):
"""Reset the simulator options to default values."""
Expand All @@ -350,7 +370,7 @@ def status(self):
BackendStatus: the status of the backend.
"""
return BackendStatus(
backend_name=self.name(),
backend_name=self.name,
backend_version=self.configuration().backend_version,
operational=True,
pending_jobs=0,
Expand Down Expand Up @@ -388,15 +408,15 @@ def _execute_qobj_job(self, qobj, job_id="", format_result=True):

# Validate output
if not isinstance(output, dict):
logger.error("%s: simulation failed.", self.name())
logger.error("%s: simulation failed.", self.name)
if output:
logger.error("Output: %s", output)
raise AerError("simulation terminated without returning valid output.")

# Format results
output["job_id"] = job_id
output["date"] = datetime.datetime.now().isoformat()
output["backend_name"] = self.name()
output["backend_name"] = self.name
output["backend_version"] = self.configuration().backend_version

# Push metadata to experiment headers
Expand Down Expand Up @@ -454,15 +474,15 @@ def _execute_circuits_job(

# Validate output
if not isinstance(output, dict):
logger.error("%s: simulation failed.", self.name())
logger.error("%s: simulation failed.", self.name)
if output:
logger.error("Output: %s", output)
raise AerError("simulation terminated without returning valid output.")

# Format results
output["job_id"] = job_id
output["date"] = datetime.datetime.now().isoformat()
output["backend_name"] = self.name()
output["backend_name"] = self.name
output["backend_version"] = self.configuration().backend_version

# Push metadata to experiment headers
Expand Down Expand Up @@ -725,5 +745,5 @@ def _set_defaults_option(self, key, value):
def __repr__(self):
"""String representation of an AerBackend."""
name = self.__class__.__name__
display = f"'{self.name()}'"
display = f"'{self.name}'"
return f"{name}({display})"
8 changes: 8 additions & 0 deletions qiskit_aer/backends/backend_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
"pauli",
"mcx_gray",
"ecr",
"reset",
]
),
"density_matrix": sorted(
Expand Down Expand Up @@ -149,6 +150,7 @@
"delay",
"pauli",
"ecr",
"reset",
]
),
"matrix_product_state": sorted(
Expand Down Expand Up @@ -191,6 +193,7 @@
"cswap",
"diagonal",
"initialize",
"reset",
]
),
"stabilizer": sorted(
Expand All @@ -210,6 +213,7 @@
"swap",
"delay",
"pauli",
"reset",
"ecr",
]
),
Expand All @@ -236,6 +240,7 @@
"ccz",
"delay",
"pauli",
"reset",
]
),
"unitary": sorted(
Expand Down Expand Up @@ -297,6 +302,7 @@
"delay",
"pauli",
"ecr",
"reset",
]
),
"superop": sorted(
Expand Down Expand Up @@ -336,6 +342,7 @@
"diagonal",
"delay",
"pauli",
"reset",
]
),
"tensor_network": sorted(
Expand Down Expand Up @@ -398,6 +405,7 @@
"delay",
"pauli",
"mcx_gray",
"reset",
]
),
}
Expand Down
Loading
Loading