Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
astralcai committed Jun 20, 2024
1 parent 92ea1d8 commit 196a912
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions doc/releases/changelog-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@
* Add more fermionic-to-qubit tests to cover cases when the mapped operator is different for various mapping schemes.
[(#5873)](https://github.com/PennyLaneAI/pennylane/pull/5873)

* `SProd.terms` now flattens out the terms if the base is a multi-term observable.
[(#5885)](https://github.com/PennyLaneAI/pennylane/pull/5885)

<h4>Mid-circuit measurements and dynamic circuits</h4>

* The `default.qubit` device implements a depth-first tree-traversal algorithm to
Expand Down
2 changes: 1 addition & 1 deletion pennylane/ops/op_math/sprod.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import pennylane as qml
import pennylane.math as qnp
from pennylane.operation import Operator, convert_to_opmath, TermsUndefinedError
from pennylane.operation import Operator, TermsUndefinedError, convert_to_opmath
from pennylane.ops.op_math.pow import Pow
from pennylane.ops.op_math.sum import Sum
from pennylane.queuing import QueuingManager
Expand Down

0 comments on commit 196a912

Please sign in to comment.