Released on 2025-01-08.
Upgrade Instructions
- Python SDK
- The IDE upgrades automatically.
Enhancements
- The name argument of local quantum variables
is now optional. If a name is not specified, it is inferred automatically from
the Python code. For example, it is now possible to write
q = QBit()
instead ofq = QBit("q")
. - Improve the performance of executing multiple primitives inside one
ExecutionSession
, such as inexecute_qaoa
.
IDE Improvements
Share Quantum Programs with anyone. For more information, see Sharing your Quantum Program Visualization.
Deprecations
Function prepare_int
and inplace_prepare_int
are now deprecated. Use Qmod out-of-place
and in-place numeric assignment statements instead. For example, instead of prepare_int(5, my_qnum)
,
write my_qnum |= 5
.
See more under numeric assignments.