-
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
Composite analysis can not handle single shot memory data #605
Comments
P.S. I see that you took care of the run options. Didn't check if there are particular transpile options. I don't know about the data processor, but as far as I remember the code was changed to support measurement level 1, including the case of parallel experiments. Parallel readout angle (with measurement level 1 like here, but |
@yaelbh have you tried with |
No, and if I remember correctly the readout angle experiment is written in a way that assume |
The problem is that If you measure 3 qubits like in the example above and measure 1024 shots, |
Composite analysis currently only supports level 2 measurement data. The handling of memory was intended for single-shot level-counts which returned a list like Adding support for marginalizing level 1 data is a feature that needs to be added to this class. |
Ah, okay. It seems that the support single-shot level 2 also incidentally enabled support for average level 1 data. |
Fixed by #801. |
Informations
What is the current behavior?
The following fails:
With error
when the analysis attempts to create a scatter plot of the data.
Steps to reproduce the problem
Execute the code above.
What is the expected behavior?
The code above should run and produce meaningful results.
Suggested solutions
I suspect that the cause of this is the data processing. Nothing is telling the data processing chain for each individual experiment how to extract the data from the "memory" in the
experiment_data
object. This points to a missing node in the data processing chain.The text was updated successfully, but these errors were encountered: