-
Notifications
You must be signed in to change notification settings - Fork 127
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
Add Job Splitting Information Methods for Better User Experience #1281
Merged
coruscating
merged 8 commits into
qiskit-community:main
from
nayan2167:enhancement/circuit-count-method
Oct 23, 2023
Merged
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5eb182b
Add Method for Experiment Details
nayan2167 c18c136
Add Tests for Newly Introduced methods
nayan2167 2ccb99d
Update documentation for job_info
nayan2167 5b3866e
Add relese notes for v0.5
nayan2167 be60dbd
Fixed linting and docs
nayan2167 a31fce9
Merge branch 'main' into enhancement/circuit-count-method
coruscating 5d863f8
Merge branch 'main' into enhancement/circuit-count-method
coruscating cff4ad7
Update backend logic
nayan2167 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -265,33 +265,91 @@ def _finalize(self): | |||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
def _run_jobs(self, circuits: List[QuantumCircuit], **run_options) -> List[Job]: | ||||||||||||||||||||||||||||||||||||
"""Run circuits on backend as 1 or more jobs.""" | ||||||||||||||||||||||||||||||||||||
def _max_circuits(self, backend: Backend = None): | ||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||
Calculate the maximum number of circuits per job for the experiment. | ||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
# set backend | ||||||||||||||||||||||||||||||||||||
if backend is None: | ||||||||||||||||||||||||||||||||||||
if self.backend is None: | ||||||||||||||||||||||||||||||||||||
raise QiskitError("A backend must be provided.") | ||||||||||||||||||||||||||||||||||||
backend = self.backend | ||||||||||||||||||||||||||||||||||||
self.backend = backend | ||||||||||||||||||||||||||||||||||||
# Get max circuits for job splitting | ||||||||||||||||||||||||||||||||||||
max_circuits_option = getattr(self.experiment_options, "max_circuits", None) | ||||||||||||||||||||||||||||||||||||
max_circuits_option = getattr(self.experiment_options, | ||||||||||||||||||||||||||||||||||||
"max_circuits", | ||||||||||||||||||||||||||||||||||||
None) | ||||||||||||||||||||||||||||||||||||
max_circuits_backend = self._backend_data.max_circuits | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
if max_circuits_option and max_circuits_backend: | ||||||||||||||||||||||||||||||||||||
max_circuits = min(max_circuits_option, max_circuits_backend) | ||||||||||||||||||||||||||||||||||||
return min(max_circuits_option, max_circuits_backend) | ||||||||||||||||||||||||||||||||||||
elif max_circuits_option: | ||||||||||||||||||||||||||||||||||||
max_circuits = max_circuits_option | ||||||||||||||||||||||||||||||||||||
return max_circuits_option | ||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||
max_circuits = max_circuits_backend | ||||||||||||||||||||||||||||||||||||
return max_circuits_backend | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
def job_info(self, backend: Backend = None): | ||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||
Get information about job distribution for the experiment on a specific | ||||||||||||||||||||||||||||||||||||
backend. | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||||||||||||
backend (Backend): The backend for which to get job distribution | ||||||||||||||||||||||||||||||||||||
information. | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||||||||||||||
dict: A dictionary containing information about job distribution. | ||||||||||||||||||||||||||||||||||||
- "Total number of circuits in the experiment": Total number of | ||||||||||||||||||||||||||||||||||||
circuits in the experiment. | ||||||||||||||||||||||||||||||||||||
- "Maximum number of circuits": Maximum number of circuits in | ||||||||||||||||||||||||||||||||||||
one Job | ||||||||||||||||||||||||||||||||||||
- "Total number of jobs": Number of jobs needed for | ||||||||||||||||||||||||||||||||||||
distribution. | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is still not building correctly, I suggest this:
Suggested change
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Raises: | ||||||||||||||||||||||||||||||||||||
QiskitError: if backend is not specified. | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||
max_circuits = self._max_circuits(backend) | ||||||||||||||||||||||||||||||||||||
total_circuits = len(self.circuits()) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
if max_circuits is None: | ||||||||||||||||||||||||||||||||||||
num_jobs = 1 | ||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||
num_jobs = (total_circuits + max_circuits - 1) // max_circuits | ||||||||||||||||||||||||||||||||||||
return { | ||||||||||||||||||||||||||||||||||||
"Total number of circuits in the experiment": total_circuits, | ||||||||||||||||||||||||||||||||||||
"Maximum number of circuits per job": max_circuits, | ||||||||||||||||||||||||||||||||||||
"Total number of jobs": num_jobs | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
def _run_jobs( | ||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||
circuits: List[QuantumCircuit], | ||||||||||||||||||||||||||||||||||||
backend: Backend = None, | ||||||||||||||||||||||||||||||||||||
**run_options) -> List[Job]: | ||||||||||||||||||||||||||||||||||||
"""Run circuits on backend as 1 or more jobs.""" | ||||||||||||||||||||||||||||||||||||
max_circuits = self._max_circuits(backend) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
# Run experiment jobs | ||||||||||||||||||||||||||||||||||||
if max_circuits and len(circuits) > max_circuits: | ||||||||||||||||||||||||||||||||||||
if max_circuits and (len(circuits) > max_circuits): | ||||||||||||||||||||||||||||||||||||
# Split jobs for backends that have a maximum job size | ||||||||||||||||||||||||||||||||||||
job_circuits = [ | ||||||||||||||||||||||||||||||||||||
circuits[i : i + max_circuits] for i in range(0, len(circuits), max_circuits) | ||||||||||||||||||||||||||||||||||||
circuits[i:i + max_circuits] for i in range(0, | ||||||||||||||||||||||||||||||||||||
len(circuits), | ||||||||||||||||||||||||||||||||||||
max_circuits) | ||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||
# Run as single job | ||||||||||||||||||||||||||||||||||||
job_circuits = [circuits] | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
# Run jobs | ||||||||||||||||||||||||||||||||||||
jobs = [self.backend.run(circs, **run_options) for circs in job_circuits] | ||||||||||||||||||||||||||||||||||||
jobs = [self.backend.run(circs, **run_options) for circs in | ||||||||||||||||||||||||||||||||||||
job_circuits] | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
return jobs | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
@abstractmethod | ||||||||||||||||||||||||||||||||||||
def circuits(self) -> List[QuantumCircuit]: | ||||||||||||||||||||||||||||||||||||
"""Return a list of experiment circuits. | ||||||||||||||||||||||||||||||||||||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One last thing: I don't think
self.backend
should be set tobackend
here. With the current logic, ifjob_info()
provides a new backend, then this backend will overwrite the current backend, which isn't behavior expected from a method that should just provide information. I think the PR can be merged after this line is removed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @coruscating Sorry for the delay
I think this will fix it
here are the results also I tried on
test_framework.py
run successfullylet me know if need further changes else I push the changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That looks good, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, there's one more issue.
backend.max_circuits
only works for V2 backends, which is why we have theBackendData
adaptor class that implements themax_circuits
property: https://github.com/Qiskit-Extensions/qiskit-experiments/blob/cfb47e24fae4173ea106de4b84e686a7933f8589/qiskit_experiments/framework/backend_data.py#L169-L176So instead of
max_circuits_backend = backend.max_circuits
you should domax_circuits_backend = BackendData(backend).max_circuits
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed