-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add refresh method to fake backends (#1740)
* added refresh method * added BackendEncoder * added logging * style fixes * linter fixes * linter fixes * added test * uncomment * updated refresh func * linter fixes * style fixes * added release note * upgrade message update * updated the docstring * fixed indentation * Update qiskit_ibm_runtime/fake_provider/fake_backend.py --------- Co-authored-by: Kevin Tian <kevin.tian@ibm.com> Co-authored-by: Kevin Tian <kt474@cornell.edu>
- Loading branch information
1 parent
235c7ce
commit 76d8341
Showing
4 changed files
with
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This code is part of Qiskit. | ||
# | ||
# (C) Copyright IBM 2024. | ||
# | ||
# This code is licensed under the Apache License, Version 2.0. You may | ||
# obtain a copy of this license in the LICENSE.txt file in the root directory | ||
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Any modifications or derivative works of this code must retain this | ||
# copyright notice, and modified files need to carry a notice indicating | ||
# that they have been altered from the originals. | ||
|
||
"""Utilities for working with IBM Quantum backends.""" | ||
import json | ||
from datetime import datetime | ||
from typing import Any | ||
|
||
from qiskit.circuit import ParameterExpression | ||
|
||
|
||
class BackendEncoder(json.JSONEncoder): | ||
"""A json encoder for qobj""" | ||
|
||
def default(self, obj: Any) -> Any: # pylint: disable=arguments-differ | ||
"""Default encoding""" | ||
# Convert numpy arrays: | ||
if hasattr(obj, "tolist"): | ||
return obj.tolist() | ||
# Use Qobj complex json format: | ||
if isinstance(obj, complex): | ||
return [obj.real, obj.imag] | ||
if isinstance(obj, ParameterExpression): | ||
return float(obj) | ||
if isinstance(obj, datetime): | ||
return obj.isoformat() | ||
return json.JSONEncoder.default(self, obj) |
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,4 @@ | ||
The instances of :class:`FakeBackend` can now be updated from | ||
their real counterpart using the :meth:`FakeBackendV2.refresh`. | ||
To pull the latest real backend data files, access permission is | ||
required. |
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