The adapter fails to address a submission of a circuit that has multiple measurement instructions as follows:
@qml.qnode(dev)
def probability_circuit(gamma, alpha, wires, layers):
circuit([gamma, alpha], wires=wires, layers=layers)
probs = qml.probs(wires=wires)
exp_value = qml.expval(cost_h)
return probs, exp_value
The backend should be able to extract these instructions and return separate measurements
The adapter fails to address a submission of a circuit that has multiple measurement instructions as follows:
The backend should be able to extract these instructions and return separate measurements