mirror of https://github.com/Qiskit/qiskit.git
13 lines
398 B
YAML
13 lines
398 B
YAML
---
|
|
features_providers:
|
|
- |
|
|
Added the ability to set the ``dt`` property of :class:`.GenericBackendV2` in the class initializer
|
|
with a new ``dt`` argument. Example usage::
|
|
|
|
from qiskit.providers.fake_provider import GenericBackendV2
|
|
backend = GenericBackendV2(
|
|
num_qubits=5,
|
|
basis_gates=["cx", "id", "rz", "sx", "x"],
|
|
dt= 2.22*e-10,
|
|
seed=42)
|