Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable zero rep delay #2 #5129

Merged
merged 5 commits into from
Sep 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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