-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial implementation of rep_delay flag * Add dynamic reprate flag * Update config files and tests * Update tests * Update tests and comments * Use . rather than dict * Fix assemble.py line lengths * Fix linting issues * Update w/ Lauren comment * Fix lint error and add release note
- Loading branch information
1 parent
f72f5cd
commit 86f5d46
Showing
8 changed files
with
191 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
features: | ||
- | | ||
Support for ``rep_delay`` flag added when assembling/executing a ``qobj``. ``rep_delay`` | ||
denotes the time between program executions. It must be chosen from a list of ``rep_delays`` | ||
from the backend, accessed as ``backend.configuration().rep_delays``. | ||
``rep_delay`` only works on backends which allow for dynamic repetition time. This setting is | ||
found from ``backend.configuration().dynamic_reprate_enabled``. If false, ``rep_time`` will be | ||
used rather than ``rep_delay``. ``rep_time`` only allows users to specify the duration of a | ||
program, rather than the delay between programs. | ||
- | | ||
``qobj`` schema has been updated to include ``rep_delay``. |
Oops, something went wrong.