-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
releasenotes/notes/delay-fake-backends-3f68c074e85d531f.yaml
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,12 @@ | ||
--- | ||
fixes: | ||
- | | ||
The :class:`~.BackendV2` based fake backends in | ||
the :mod:`qiskit.providers.fake_provider` module, such as | ||
``FakeMontrealV2``, previously were missing the :class:`~.Delay` operation | ||
support from their :attr:`~.BackendV2.target` attribute. This prevented | ||
compiling some :class:`~.QuantumCircuit` objects that contained | ||
:class:`~.Delay` instructions to these backends. This has been corrected | ||
by adding the :class:`~.Delay` to the :class:`~.Target` object for each | ||
fake backend to ensure that the compiler knows that :class:`~.Delay` is | ||
a valid operation on the fake backends. |