Skip to content
Merged
2 changes: 1 addition & 1 deletion qiskit/compiler/transpiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def transpile( # pylint: disable=too-many-return-statements
If unit is omitted, the default is 'dt', which is a sample time depending on backend.
If the time unit is 'dt', the duration must be an integer.
dt: Backend sample time (resolution) in seconds.
If ``None`` (default), ``backend.configuration().dt`` is used.
If ``None`` (default), ``backend.dt`` is used.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might have slipped in from the backendv1 removal pr. Not a big deal though

approximation_degree (float): heuristic dial used for circuit approximation
(1.0=no approximation, 0.0=maximal approximation)
timing_constraints: An optional control hardware restriction on instruction time resolution.
Expand Down
37 changes: 0 additions & 37 deletions qiskit/providers/fake_provider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,42 +65,5 @@

GenericBackendV2

V1 Fake Backends (Legacy interface)
===================================

.. autosummary::
:toctree: ../stubs/

FakeOpenPulse2Q
FakeOpenPulse3Q
Fake1Q
Fake5QV1
Fake20QV1
Fake7QPulseV1
Fake27QPulseV1
Fake127QPulseV1

Fake Backend Base Classes
=========================

The V1 fake backends are based on a set of base classes:

.. currentmodule:: qiskit.providers.fake_provider
.. autoclass:: FakeBackend
.. autoclass:: FakeQasmBackend
.. autoclass:: FakePulseBackend
"""

# Base classes for fake backends
from .fake_backend import FakeBackend
from .fake_qasm_backend import FakeQasmBackend
from .fake_pulse_backend import FakePulseBackend

# Special fake backends for special testing purposes
from .fake_openpulse_2q import FakeOpenPulse2Q
from .fake_openpulse_3q import FakeOpenPulse3Q
from .fake_1q import Fake1Q

# Generic fake backends
from .backends_v1 import Fake5QV1, Fake20QV1, Fake7QPulseV1, Fake27QPulseV1, Fake127QPulseV1
from .generic_backend_v2 import GenericBackendV2
22 changes: 0 additions & 22 deletions qiskit/providers/fake_provider/backends_v1/__init__.py

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

18 changes: 0 additions & 18 deletions qiskit/providers/fake_provider/backends_v1/fake_20q/__init__.py

This file was deleted.

Loading