Skip to content

Commit

Permalink
Update release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhartman committed Jan 26, 2024
1 parent 761a272 commit b47467b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
features:
- |
A new function, :func:`.make_generic_backend` has been added to the :mod:`qiskit.providers.fake_provider`
A new function, :func:`.make_generic_backend` has been added to the :mod:`qiskit.providers.utils`
module. This function generates customized :class:`~.BackendV2` instances which run locally via a
the Aer simulator (if installed) or else using :class:`~.BasicAer`.
Users can configure the number of qubits, basis gates, coupling map,
Expand All @@ -13,7 +13,7 @@ features:
Example usage 1::
from qiskit import QuantumCircuit, transpile
from qiskit.providers.fake_provider import make_generic_backend
from qiskit.providers.utils import make_generic_backend
# Create a simple circuit
circuit = QuantumCircuit(3)
Expand All @@ -33,7 +33,7 @@ features:
Example usage 2::
from qiskit import QuantumCircuit, ClassicalRegister, transpile
from qiskit.providers.fake_provider import make_generic_backend
from qiskit.providers.utils import make_generic_backend
# Create a circuit with classical control
creg = ClassicalRegister(19)
Expand Down

0 comments on commit b47467b

Please sign in to comment.