-
Notifications
You must be signed in to change notification settings - Fork 178
Less-than comparison with a constant #318
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, modulo a few comments here and there. Happy to approve once we complete API review. Thanks!
/// Dominic W. Berry, Craig Gidney, Mario Motta, Jarrod R. McClean, Ryan Babbush | ||
/// Quantum 3, 208 (2019) | ||
/// https://arxiv.org/abs/1902.02134v4 | ||
operation LessThanConstantUsingRippleCarry(c : BigInt, x : LittleEndian, output : Qubit) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can defer to API review, but I'd suggest maybe something like "CompareLessThanConstantUsingRippleCarry"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good, but we need further discussion because we also have CompareUsingRippleCarry
at the moment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point; that can definitely create some confusion. Agreed with the need for further discussion.
Co-authored-by: Chris Granade <[email protected]>
…aries into msoeken/arithmetic
Thanks for your feedback @cgranade, I have incorporated your comments. |
This operation implements an optimised version of Fig. 17 in arXiv:1902.02134. Constant input bits are propagated into the circuits, and no qubits are allocated for them. Further optimisations are applied for trailing 0s in the bit representation of the constant. The circuit uses AND gates instead of Toffoli gates to further reduce costs.
API review is necessary for consistent naming of arithmetic operations (e.g., compare to
CompareUsingRippleCarry
which performs greater-than comparison.)