File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ to wrap the blackbox by defining the target states and the ``opt_map``.
124
124
exp.set_opt_gates_seq(seqs)
125
125
126
126
# Simulating the gates #
127
- U_dict = exp.get_gates ()
127
+ U_dict = exp.compute_propagators ()
128
128
129
129
# Running the RB sequences and read-out the results #
130
130
pops = exp.evaluate(seqs)
Original file line number Diff line number Diff line change @@ -622,13 +622,13 @@ rotation on one qubit and the identity.
622
622
623
623
exp.set_opt_gates([' RX90p:Id' , ' Id:Id' ])
624
624
625
- The actual numerical simulation is done by calling ``exp.get_gates () ``.
625
+ The actual numerical simulation is done by calling ``exp.compute_propagators () ``.
626
626
This is the most resource intensive part as it involves solving the
627
627
equations of motion for the system.
628
628
629
629
.. code-block :: python
630
630
631
- unitaries = exp.get_gates ()
631
+ unitaries = exp.compute_propagators ()
632
632
633
633
634
634
.. code-block :: python
@@ -695,7 +695,7 @@ and plot system dynamics.
695
695
If true, return a matplotlib figure instead of saving.
696
696
"""
697
697
model = exp.pmap.model
698
- dUs = exp.dUs
698
+ dUs = exp.partial_propagators
699
699
psi_t = psi_init.numpy()
700
700
pop_t = exp.populations(psi_t, model.lindbladian)
701
701
for gate in seq:
Original file line number Diff line number Diff line change 136
136
" exp.set_opt_gates_seq(seqs)\n " ,
137
137
" \n " ,
138
138
" # Simulating the gates #\n " ,
139
- " U_dict = exp.get_gates ()\n " ,
139
+ " U_dict = exp.compute_propagators ()\n " ,
140
140
" \n " ,
141
141
" # Running the RB sequences and read-out the results #\n " ,
142
142
" pops = exp.evaluate(seqs)\n " ,
Original file line number Diff line number Diff line change 935
935
"cell_type" : " markdown" ,
936
936
"metadata" : {},
937
937
"source" : [
938
- " The actual numerical simulation is done by calling `exp.get_gates ()`. \n " ,
938
+ " The actual numerical simulation is done by calling `exp.compute_propagators ()`. \n " ,
939
939
" This is the most resource intensive part as it involves solving the equations of motion for the system."
940
940
]
941
941
},
945
945
"metadata" : {},
946
946
"outputs" : [],
947
947
"source" : [
948
- " unitaries = exp.get_gates ()"
948
+ " unitaries = exp.compute_propagators ()"
949
949
]
950
950
},
951
951
{
1160
1160
" If true, return a matplotlib figure instead of saving.\n " ,
1161
1161
" \"\"\"\n " ,
1162
1162
" model = exp.pmap.model\n " ,
1163
- " dUs = exp.dUs \n " ,
1163
+ " dUs = exp.partial_propagators \n " ,
1164
1164
" psi_t = psi_init.numpy()\n " ,
1165
1165
" pop_t = exp.populations(psi_t, model.lindbladian)\n " ,
1166
1166
" for gate in seq:\n " ,
You can’t perform that action at this time.
0 commit comments