Skip to content
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

Avoid lossing precision when scaling frequencies #12392

Merged
merged 2 commits into from
May 16, 2024

Commits on May 12, 2024

  1. Avoid lossing precision when scaling frequencies

    Classes in pulse_instruction.py scale frequency values to GHz by
    multipliying `ParameterExpression` with float 1e9. This can lead
    to numerical errors on some systems using symengine. Instead, this
    scaling can be done multiplying by integer 10**9.
    
    See: Qiskit#12359 (comment)
    iyanmv committed May 12, 2024
    Configuration menu
    Copy the full SHA
    fa5d8a7 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Add release note

    jakelishman committed May 15, 2024
    Configuration menu
    Copy the full SHA
    cde8873 View commit details
    Browse the repository at this point in the history