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
Pennylane catalyst does not support the last cuda-quantum version (0.8.0) which includes fixes on several GPU and cuda issues.
import pennylane as qml dev = qml.device("softwareq.qpp", wires=2) @qml.qjit(compiler="cuda_quantum") @qml.qnode(dev) def circuit(x): qml.RX(x[0], wires=0) qml.RY(x[1], wires=1) qml.CNOT(wires=[0, 1]) return qml.expval(qml.Y(0))
throws error ModuleNotFoundError: Compiling with incompatible version cuda_quantum==0.8.0. Please install compatible version cuda_quantum==0.6.0.
ModuleNotFoundError: Compiling with incompatible version cuda_quantum==0.8.0. Please install compatible version cuda_quantum==0.6.0.
Actual behavior: (What actually happens) Return the correct expectation value.
Reproduces how often: (What percentage of the time does it reproduce?) Every time.
System information: (post the output of import pennylane as qml; qml.about()) Name: PennyLane Version: 0.38.0 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: /opt/conda/lib/python3.10/site-packages Requires: appdirs, autograd, autoray, cachetools, networkx, numpy, packaging, pennylane-lightning, requests, rustworkx, scipy, toml, typing-extensions Required-by: amazon-braket-pennylane-plugin, PennyLane-Catalyst, PennyLane_Lightning, PennyLane_Lightning_GPU
import pennylane as qml; qml.about()
Platform info: Linux-5.10.223-212.873.amzn2.x86_64-x86_64-with-glibc2.31 Python version: 3.10.13 Numpy version: 1.26.4 Scipy version: 1.12.0 Installed devices:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue description
Pennylane catalyst does not support the last cuda-quantum version (0.8.0) which includes fixes on several GPU and cuda issues.
Running example code
throws error
ModuleNotFoundError: Compiling with incompatible version cuda_quantum==0.8.0. Please install compatible version cuda_quantum==0.6.0.
Actual behavior: (What actually happens)
Return the correct expectation value.
Reproduces how often: (What percentage of the time does it reproduce?)
Every time.
System information: (post the output of
import pennylane as qml; qml.about()
)Name: PennyLane
Version: 0.38.0
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: /opt/conda/lib/python3.10/site-packages
Requires: appdirs, autograd, autoray, cachetools, networkx, numpy, packaging, pennylane-lightning, requests, rustworkx, scipy, toml, typing-extensions
Required-by: amazon-braket-pennylane-plugin, PennyLane-Catalyst, PennyLane_Lightning, PennyLane_Lightning_GPU
Platform info: Linux-5.10.223-212.873.amzn2.x86_64-x86_64-with-glibc2.31
Python version: 3.10.13
Numpy version: 1.26.4
Scipy version: 1.12.0
Installed devices:
The text was updated successfully, but these errors were encountered: