Skip to content

Classiq 0.65.1

Compare
Choose a tag to compare
@ravidalon ravidalon released this 08 Jan 16:38
· 98 commits to main since this release

Released on 2025-01-06.

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.

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.