-
### Question
I am trying to use the latest version of gymnasium with python 3.10.6 on Ubuntu 22.04. When I type `import gymnasium`, I get the following error:
```
Traceback (most recent call last…
-
### Expected behavior
The following code should either raise an error or return the correct values:
```python
@qml.qnode(dev)
def circuit(x, y):
qml.RX(x, wires=[0])
qml.RY(y, wires=[1…
-
### Expected behavior
For the results with `return_intermediate=True` and a time interval that doesn't start with 0 to match the exact solution (and the results if `return_intermediate=False`
### A…
-
### Context
Currently, Catalyst has native support for conditionals via the [catalyst.cond](https://docs.pennylane.ai/projects/catalyst/en/latest/code/api/catalyst.cond.html) function, a decorator …
-
Consider the following program containing an infinite loop.
``` python
import pennylane as qml
from catalyst import qjit, while_loop
@qjit
@qml.qnode(qml.device("lightning.qubit", wires=1))
…
-
Currently, the _setup.py_ file uses `brew` to find `llvm`: https://github.com/PennyLaneAI/pennylane-lightning/blob/f1a67893ed38cea27c29a4bc64a28fe1ec58e2f6/setup.py#L90
Would it be possible to remo…
-
#### Issue description
Running the test for ` lightning.qubit` device produced the following error in `tests/test_execute.py`
```
pennylane._device.DeviceError: Gate SingleExcitation not sup…
-
-
In the `__init__` of `Operator`, the `_check_batching` method is running `qml.math.ndim(p) for p in params` (see [pennylane/operation.py#L1025](https://github.com/PennyLaneAI/pennylane/blob/master/pen…
-
### Feature details
When using parameter broadcasting and creating the label of an operation, its data is perceived as a matrix by PennyLane and therefore represented only symbolically:
```pycon
>>…