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

Feat/mfli driver #685

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c7e9355
Add first draft for a virtual AWG that can serve as simulation interface
terrorfisch Feb 19, 2019
ed5765e
Add first trivial tests
terrorfisch Feb 20, 2019
6d1003c
Use voltage transformations instead of silently ignoring them
terrorfisch Feb 20, 2019
85a946e
Merge branch 'master' into issues/421_virtual_awg
terrorfisch Feb 26, 2019
60fd4e6
Add an interface that can be used with qutip simulations
terrorfisch Mar 7, 2019
68d3719
Remove fixed sample rate callbacks for now
terrorfisch Mar 8, 2019
fc8a260
Add more tests
terrorfisch Mar 8, 2019
7606d43
Merge branch 'master' into issues/421_virtual_awg
terrorfisch Mar 12, 2019
d199489
working on mfli driver
paulsurrey Sep 20, 2022
5adac25
merging
paulsurrey Sep 28, 2022
e609d6d
wip
paulsurrey Sep 28, 2022
b16a8bd
before switching from sample count to timestamp measurement mask sele…
paulsurrey Sep 29, 2022
5a5e497
extracting windows now working
paulsurrey Sep 30, 2022
0d4ec72
trigger working
paulsurrey Oct 4, 2022
9892900
trigger working better
paulsurrey Oct 4, 2022
4a8fff3
small improvements
paulsurrey Oct 4, 2022
efa69a1
small changes
paulsurrey Oct 4, 2022
61201f6
Added some documentation to the example notebook and performed some s…
paulsurrey Oct 6, 2022
be08e12
small parameter clean up and one sentence added to some doc-string
paulsurrey Oct 7, 2022
6a780d1
small (but critical) bug fixes
paulsurrey Oct 11, 2022
773e858
small changes (logger and a bug fix)
paulsurrey Oct 21, 2022
6d6d281
added parameter to set wait time
paulsurrey Oct 23, 2022
4d808b0
moved logging outside of wait loop
paulsurrey Oct 24, 2022
4f66c1e
Merge branch 'master' into feat/mfli_driver
terrorfisch Nov 2, 2022
accf042
Refactor everything
terrorfisch Nov 2, 2022
3542244
Merge remote-tracking branch 'upstream/master' into feat/mfli_driver
paulsurrey May 31, 2023
4ecf9bc
Fix everything
paulsurrey Aug 23, 2023
d2d14dd
added missing updates within the MFLIProgram merge method
paulsurrey Aug 24, 2023
0d749c2
used interface to add post processing callbacks to average for each w…
paulsurrey Aug 24, 2023
a492613
added default operation
paulsurrey Aug 24, 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
3 changes: 2 additions & 1 deletion qupulse/_program/_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

from qupulse._program.waveforms import SequenceWaveform, RepetitionWaveform

__all__ = ['Loop', 'make_compatible', 'MakeCompatibleWarning']

__all__ = ['Loop', 'MultiChannelProgram', 'make_compatible', 'to_waveform']


class Loop(Node):
Expand Down
Loading