-
Notifications
You must be signed in to change notification settings - Fork 368
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
Implementing SamplerV2 #2090
Implementing SamplerV2 #2090
Conversation
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.
LGTM
qiskit_aer/primitives/sampler_v2.py
Outdated
def __init__( | ||
self, | ||
*, | ||
backend: AerSimulator = None, |
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.
Could you consider the options class and backend_options adopted by estimator for consistency. I am not sure which is better. Perhaps the Estimator side should be changed to match this specification.
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.
Note that this option class comes from BackendSampler/Estimator.
Summary
This PR adds implementation of SamplerV2 in
qiskit_aer.primitives
#2078Details and comments
This is based on
qiskit.primitives.StatevectorSampler
I think we need further optimization for simulator in the next release.