-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Description
For the snippet:
# Set the backend options, method set to statevector
options = {'method': 'statevector', 'memory':True, 'shots':10}
, putting options in a dictionary doesn't work anymore.
It should be:
#options = {'method': 'statevector', 'memory': True, 'shots': 10}
options = {"method": "statevector"}
# Execute circuit using the backend options created
job = execute(qc, backend_simulator, backend_options=options, memory=True, shots=10)
Metadata
Metadata
Assignees
Labels
No labels