Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pulse_lib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QuTech QDLabs
pulse_lib
Commits
1956a4b2
Commit
1956a4b2
authored
7 years ago
by
Stephan Philips
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
cd7d0a51
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
__pycache__/keysight_fx.cpython-36.pyc
+0
-0
0 additions, 0 deletions
__pycache__/keysight_fx.cpython-36.pyc
base_pulse.py
+10
-3
10 additions, 3 deletions
base_pulse.py
ideas.txt
+6
-0
6 additions, 0 deletions
ideas.txt
keysight_fx.py
+2
-1
2 additions, 1 deletion
keysight_fx.py
with
18 additions
and
4 deletions
__pycache__/keysight_fx.cpython-36.pyc
+
0
−
0
View file @
1956a4b2
No preview for this file type
This diff is collapsed.
Click to expand it.
base_pulse.py
+
10
−
3
View file @
1956a4b2
...
...
@@ -173,17 +173,24 @@ seg.B1.add_block(20,50,2.5)
seg
.
B1
.
add_block
(
80
,
90
,
2.5
)
# seg.B1.plot_sequence()
seg2
.
B5
.
add_block
(
30
,
60
,
1
)
seg3
.
B5
.
add_block
(
30
,
600
,
0.1
)
seg3
.
B5
.
wait
(
200
)
p
.
show_sequences
()
SEQ
=
[[
'
INIT
'
,
1
,
0
],
[
'
INIT
'
,
1
,
0
],
[
'
INIT
'
,
1
,
0
]
]
SEQ
=
[[
'
INIT
'
,
1
,
0
],
[
'
Manip
'
,
1
,
0
],
[
'
INIT
'
,
1
,
0
]
]
p
.
add_sequence
(
'
mysequence
'
,
SEQ
)
p
.
start_sequence
(
'
mysequence
'
)
p
.
add_sequence
(
'
mysequence2
'
,
SEQ
)
SEQ2
=
[[
'
INIT
'
,
1
,
0
],
[
'
Manip
'
,
1
,
0
],
[
'
Readout
'
,
1
,
0
]
]
p
.
start_sequence
(
'
mysequence
'
)
p
.
add_sequence
(
'
mysequence2
'
,
SEQ2
)
p
.
start_sequence
(
'
mysequence2
'
)
# insert in the begining of a segment
# seg.insert_mode()
# seg.clear()
...
...
This diff is collapsed.
Click to expand it.
ideas.txt
0 → 100644
+
6
−
0
View file @
1956a4b2
IQ mod contienuous implementation. (IQ functions + mullitistage mixing)
Support for function input
suport multuDarrrays,
label =
mode =parallel/single
max_steps
\ No newline at end of file
This diff is collapsed.
Click to expand it.
keysight_fx.py
+
2
−
1
View file @
1956a4b2
...
...
@@ -62,10 +62,11 @@ class keysight_awg():
segment_name
=
i
[
0
]
if
segment_name
in
self
.
segmentdata
:
if
self
.
segment_bin
.
get_segment
(
segment_name
).
last_mod
>
self
.
segmentdata
(
segment_name
):
print
(
'
discarded ,
'
,
segment_name
)
continue
else
:
mem_needed
+=
self
.
segment_bin
.
get_segment
(
segment_name
).
total_time
print
(
mem_needed
)
# If memory full, clear
if
mem_needed
>
self
.
allocatable_mem
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment