We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider the following example:
from qrisp import * from qrisp.interface import MQTSim, CirqSim, QulacsSim qf = QuantumFloat(3) qf[:] = 2 qf.get_measurement(backend = QulacsSim())
Yields:
IndexError: list index out of range
for all 3 simulators (probably also for the other available simulators).
The job_get_response.json() has entry [] for 'results'.
The text was updated successfully, but these errors were encountered:
all above mentioned SimulatorBackends work, if a "shots" argument is assigned, i.e.:
res = qf.get_measurement(backend = QulacsSim(), shots=100)
This should either be mentioned in the documentation, or adjusted with a default argument
Sorry, something went wrong.
positr0nium
No branches or pull requests
Consider the following example:
Yields:
for all 3 simulators (probably also for the other available simulators).
The job_get_response.json() has entry [] for 'results'.
The text was updated successfully, but these errors were encountered: