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

Introducing ScalableSymbolicPulse to correctly compare pulses of amp,angle representation #9314

Merged
merged 31 commits into from
Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bd2c463
Introduced ScalableSymbolicPulses to correctly compare pulses with am…
TsafrirA Dec 20, 2022
ce43301
Merge branch 'Qiskit:main' into PulseComp3
TsafrirA Dec 20, 2022
019057d
Modified ScalableSymbolicPulse, bumped QPY version to 6.
TsafrirA Dec 22, 2022
fe6d8ad
Merge branch 'Qiskit:main' into PulseComp3
TsafrirA Dec 22, 2022
6f66d4e
Merge branch 'PulseComp3' of https://github.com/TsafrirA/qiskit-terra…
TsafrirA Dec 22, 2022
d25c1bf
Bug fix
TsafrirA Dec 22, 2022
4d4071f
Documentation
TsafrirA Dec 22, 2022
fcfaafe
Release Notes
TsafrirA Dec 22, 2022
56e6ffc
Release Notes
TsafrirA Dec 22, 2022
277d500
Release Notes
TsafrirA Dec 22, 2022
20e6dba
Release Notes
TsafrirA Dec 22, 2022
4bcc7c0
Release Notes
TsafrirA Dec 25, 2022
d558cd4
Merge branch 'main' into PulseComp3
TsafrirA Dec 25, 2022
376dda1
Hash correction
TsafrirA Jan 1, 2023
b1e4a4a
Merge branch 'PulseComp3' of https://github.com/TsafrirA/qiskit-terra…
TsafrirA Jan 1, 2023
d29b74c
Resolve GaussianSquareDrag conflict.
TsafrirA Jan 8, 2023
89b9983
Resolve GaussianSquareDrag conflict.
TsafrirA Jan 8, 2023
d4eadf4
Merge branch 'main' into PulseComp3
TsafrirA Jan 8, 2023
c20c1e6
Resolve GaussianSquareDrag conflict.
TsafrirA Jan 8, 2023
b03f821
GaussianSquareDrag conversion to scalable and minor fixes.
TsafrirA Jan 8, 2023
e28e464
added _read_symbolic_pulse_v6, and updated _loads_operand
TsafrirA Jan 8, 2023
89be676
Added ScalableSymbolicPulse to init
TsafrirA Jan 8, 2023
466a494
Minor fixes
TsafrirA Jan 9, 2023
2f68f94
Documentation fix
TsafrirA Jan 9, 2023
35b454c
Minor fix to amplitude validation and release notes.
TsafrirA Jan 10, 2023
92922bb
Add epsilon to amp validation.
TsafrirA Jan 10, 2023
0eda2d3
Merge branch 'main' into PulseComp3
nkanazawa1989 Jan 10, 2023
a55f4aa
Merge branch 'main' into PulseComp3
wshanks Jan 11, 2023
0ca5fa1
Merge branch 'main' into PulseComp3
wshanks Jan 11, 2023
f671615
Merge branch 'main' into PulseComp3
wshanks Jan 11, 2023
12ae2ad
Merge branch 'main' into PulseComp3
mergify[bot] Jan 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions qiskit/pulse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
GaussianSquareDrag,
ParametricPulse,
SymbolicPulse,
ScalableSymbolicPulse,
Waveform,
)
from qiskit.pulse.library.samplers.decorators import functional_pulse
Expand Down
1 change: 1 addition & 0 deletions qiskit/pulse/library/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
from .parametric_pulses import ParametricPulse
from .symbolic_pulses import (
SymbolicPulse,
ScalableSymbolicPulse,
Gaussian,
GaussianSquare,
GaussianSquareDrag,
Expand Down
Loading