Skip to content

Commit

Permalink
Fix Nyquist frequency warnings in tests (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPuzzuoli authored Feb 28, 2024
1 parent bec7cba commit c82e1ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dynamics/pulse/test_pulse_to_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,12 +445,12 @@ def jit_func_symbolic_pulse(amp):
with pulse.build() as schedule:
pulse.play(instance, pulse.DriveChannel(0))
pulse.set_phase(0.1, pulse.DriveChannel(0))
pulse.set_frequency(0.1, pulse.DriveChannel(0))
pulse.set_frequency(5.1, pulse.DriveChannel(0))
pulse.shift_phase(0.1, pulse.DriveChannel(0))
pulse.set_phase(0.1, pulse.DriveChannel(0))
pulse.shift_frequency(0.1, pulse.DriveChannel(0))
pulse.shift_frequency(0.1, pulse.DriveChannel(0))
pulse.set_frequency(0.1, pulse.DriveChannel(0))
pulse.set_frequency(5.1, pulse.DriveChannel(0))
pulse.shift_phase(0.1, pulse.DriveChannel(0))
pulse.play(instance, pulse.DriveChannel(0))
converter = InstructionToSignals(self._dt, carriers={"d0": 5})
Expand Down

0 comments on commit c82e1ef

Please sign in to comment.