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] Autoray wrongly dispatches append operation to numpy when using pennylane.numpy.tensor arrays #6119

Open
1 task done
EmilianoG-byte opened this issue Aug 20, 2024 · 0 comments
Labels
bug 🐛 Something isn't working

Comments

@EmilianoG-byte
Copy link
Contributor

EmilianoG-byte commented Aug 20, 2024

Expected behavior

Appending two pennylane.numpy.tensor arrays using qml.math.append returns another pennylane.numpy.tensor array.

Actual behavior

Appending two pennylane.numpy arrays using qml.math.append returns a numpy.ndarray array.

Additional information

No response

Source code

import pennylane.numpy as pnp
a = pnp.array([0])
b = pnp.array([1])

type(qml.math.append(a,b))
>> numpy.ndarray

Tracebacks

No response

System information

Name: PennyLane
Version: 0.38.0.dev6
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/emiliano.godinez/.pyenv/versions/3.10.14/envs/pennylane-dev/lib/python3.10/site-packages
Editable project location: /Users/emiliano.godinez/Documents/software_development/pennylane
Requires: appdirs, autograd, autoray, cachetools, networkx, numpy, packaging, pennylane-lightning, requests, rustworkx, scipy, semantic-version, toml, typing-extensions
Required-by: PennyLane-qiskit, PennyLane_Lightning

Platform info:           macOS-14.6.1-arm64-arm-64bit
Python version:          3.10.14
Numpy version:           1.26.4
Scipy version:           1.13.1
Installed devices:
- lightning.qubit (PennyLane_Lightning-0.37.0)
- qiskit.aer (PennyLane-qiskit-0.37.0)
- qiskit.basicaer (PennyLane-qiskit-0.37.0)
- qiskit.basicsim (PennyLane-qiskit-0.37.0)
- qiskit.ibmq (PennyLane-qiskit-0.37.0)
- qiskit.ibmq.circuit_runner (PennyLane-qiskit-0.37.0)
- qiskit.ibmq.sampler (PennyLane-qiskit-0.37.0)
- qiskit.remote (PennyLane-qiskit-0.37.0)
- default.clifford (PennyLane-0.38.0.dev6)
- default.gaussian (PennyLane-0.38.0.dev6)
- default.mixed (PennyLane-0.38.0.dev6)
- default.qubit (PennyLane-0.38.0.dev6)
- default.qubit.autograd (PennyLane-0.38.0.dev6)
- default.qubit.jax (PennyLane-0.38.0.dev6)
- default.qubit.legacy (PennyLane-0.38.0.dev6)
- default.qubit.tf (PennyLane-0.38.0.dev6)
- default.qubit.torch (PennyLane-0.38.0.dev6)
- default.qutrit (PennyLane-0.38.0.dev6)
- default.qutrit.mixed (PennyLane-0.38.0.dev6)
- default.tensor (PennyLane-0.38.0.dev6)
- null.qubit (PennyLane-0.38.0.dev6)

Existing GitHub issues

  • I have searched existing GitHub issues to make sure the issue does not already exist.
@EmilianoG-byte EmilianoG-byte added the bug 🐛 Something isn't working label Aug 20, 2024
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