0 59 0
Released on 2024-11-25.
Upgrade Instructions
- Python SDK
- The IDE upgrades automatically.
Enhancements
- Allow different parts of a quantum struct or array to be passed in different sections of a quantum statement:
@qfunc
def main() -> None:
qbv = QArray("qbv")
allocate(2, qbv)
# The following line previously raised an exception, but is now valid
control(qbv[0], lambda: H(qbv[1]))
Deprecations
- Using
control
as a keyword parameter for standard gates (such asCX
) is no longer supported. Usectrl
instead.