Skip to content

Commit

Permalink
Enable zero rep delay #2 (Qiskit#5129)
Browse files Browse the repository at this point in the history
* Enable zero rep delay

* Add backend fix

Co-authored-by: Luciano Bello <luciano.bello@ibm.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 26, 2020
1 parent 8ff6aa8 commit 2557b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiskit/providers/models/backendconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def __init__(self, backend_name, backend_version, n_qubits,
self.dynamic_reprate_enabled = dynamic_reprate_enabled
if rep_delay_range:
self.rep_delay_range = [_rd * 1e-6 for _rd in rep_delay_range] # convert to sec
if default_rep_delay:
if default_rep_delay is not None:
self.default_rep_delay = default_rep_delay * 1e-6 # convert to sec

# max_experiments must be >=1
Expand Down

0 comments on commit 2557b7c

Please sign in to comment.