-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecate complex amp support for ScalableSymbolicPulse
#10357
Conversation
One or more of the the following people are requested to review this:
|
Pull Request Test Coverage Report for Build 5461949464
💛 - Coveralls |
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 almost good to me. Just a few minor suggestions.
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.
Thanks for the ping!
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.
Just minor suggestions for type hints, but this is almost good to go.
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.
Thanks @TsafrirA this looks good to go.
### Summary This PR removes complex amplitudes from pulses in tests after Qiskit/qiskit#10357.
### Summary This PR removes complex amplitudes from pulses in tests after Qiskit/qiskit#10357. (cherry picked from commit ad8aa79) # Conflicts: # test/calibration/test_calibrations.py
Summary
We deprecate the support for complex
amp
in the initialization ofScalableSymbolicPulse
.Details and comments
PR #9002 (and later #9871) issued
PendingDeprecationWarning
s for initialization ofScalableSymbolicPulse
(and particularly the library pulses which rely on it) with complexamp
. The alternativeamp
,angle
representation was introduced then. This PR promotes the warning to a deprecation warning.