Skip to content

Released on 2025-01-08.

Upgrade Instructions

Enhancements

  1. 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 of q = QBit("q").
  2. Improve the performance of executing multiple primitives inside one ExecutionSession, such as in execute_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.