Skip to content
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

[BUG] Incorrect state measurement when GlobalPhase decomposes to nothing #7158

Open
1 task done
astralcai opened this issue Mar 27, 2025 · 0 comments
Open
1 task done
Labels
bug 🐛 Something isn't working

Comments

@astralcai
Copy link
Contributor

Expected behavior

A circuit should produce the same result for a state measurement whether it is decomposed.

Actual behavior

@qml.qnode(qml.device("default.qubit"))
def circuit():
    qml.X(0)
    return qml.state()
>>> circuit()
array([0.+0.j, 1.+0.j])

but if we decompose the circuit:

@functools.partial(qml.transforms.decompose, gate_set={"RX"})
@qml.qnode(qml.device("default.qubit"))
def circuit():
    qml.X(0)
    return qml.state()
>>> circuit()
array([6.123234e-17+0.j, 0.000000e+00-1.j])

Additional information

No response

Source code

Tracebacks

System information

Name: PennyLane
Version: 0.41.0.dev42
Summary: PennyLane is a cross-platform Python library for quantum computing, quantum machine learning, and quantum chemistry. Train a quantum computer the same way as a neural network.
Home-page: https://github.com/PennyLaneAI/pennylane
Author: 
Author-email: 
License: Apache License 2.0
Location: /Users/xxx/Workspace/pennylane
Requires: appdirs, autograd, autoray, cachetools, diastatic-malt, networkx, numpy, packaging, pennylane-lightning, requests, rustworkx, scipy, tomlkit, typing_extensions
Required-by: PennyLane_Lightning

Platform info:           macOS-15.3.2-arm64-arm-64bit
Python version:          3.10.14
Numpy version:           1.26.4
Scipy version:           1.14.1
Installed devices:
- default.clifford (PennyLane-0.41.0.dev42)
- default.gaussian (PennyLane-0.41.0.dev42)
- default.mixed (PennyLane-0.41.0.dev42)
- default.qubit (PennyLane-0.41.0.dev42)
- default.qutrit (PennyLane-0.41.0.dev42)
- default.qutrit.mixed (PennyLane-0.41.0.dev42)
- default.tensor (PennyLane-0.41.0.dev42)
- null.qubit (PennyLane-0.41.0.dev42)
- reference.qubit (PennyLane-0.41.0.dev42)
- lightning.qubit (PennyLane_Lightning-0.40.0)

Existing GitHub issues

  • I have searched existing GitHub issues to make sure the issue does not already exist.
@astralcai astralcai added the bug 🐛 Something isn't working label Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant