Skip to content

Commit d0915df

Browse files
committed
Updated notebooks and added pwc example
1 parent c684fc7 commit d0915df

11 files changed

+933
-431
lines changed

examples/Full_loop_single_qubit.ipynb

+73-56
Large diffs are not rendered by default.

examples/Piecewise_constant_controls.ipynb

+464
Large diffs are not rendered by default.

examples/Simulated_Model_Learning.ipynb

+118-61
Large diffs are not rendered by default.

examples/Simulated_calibration.ipynb

+75-35
Large diffs are not rendered by default.

examples/c3_qiskit.ipynb

+26-46
Large diffs are not rendered by default.

examples/generator.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"c3type": "AWG",
1010
"outputs": 1,
1111
"resolution": 2e9,
12-
"options": "drag"
1312
},
1413
"Mixer": {
1514
"c3type": "Mixer",

examples/instructions.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"drive_channels":{
55
"d1":{
66
"gaussian":{
7-
"c3type": "Envelope",
7+
"c3type": "EnvelopeDrag",
88
"shape": "gaussian_nonorm",
99
"params": {
1010
"amp": {

examples/single_qubit_blackbox_exp.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ def create_experiment():
100100
}
101101
},
102102
)
103-
generator.devices["AWG"].enable_drag_2()
104103

105104
# ### MAKE GATESET
106105
gauss_params_single = {
@@ -123,7 +122,7 @@ def create_experiment():
123122
"delta": Qty(value=-1, min_val=-5, max_val=3, unit=""),
124123
}
125124

126-
gauss_env_single = pulse.Envelope(
125+
gauss_env_single = pulse.EnvelopeDrag(
127126
name="gauss",
128127
desc="Gaussian comp for single-qubit gates",
129128
params=gauss_params_single,

examples/single_qubit_experiment.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def create_experiment():
8686
}
8787
},
8888
)
89-
generator.devices["AWG"].enable_drag_2()
9089

9190
# ### MAKE GATESET
9291
gauss_params_single = {
@@ -109,7 +108,7 @@ def create_experiment():
109108
"delta": Qty(value=-1, min_val=-5, max_val=3, unit=""),
110109
}
111110

112-
gauss_env_single = pulse.Envelope(
111+
gauss_env_single = pulse.EnvelopeDrag(
113112
name="gauss",
114113
desc="Gaussian comp for single-qubit gates",
115114
params=gauss_params_single,

examples/two_qubit_entangling_gate.ipynb

+79-102
Large diffs are not rendered by default.

examples/two_qubits.ipynb

+95-125
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)