Skip to content

Commit 26ef3fa

Browse files
committed
Rename of get_gates to compute_propagators
1 parent 7e1a865 commit 26ef3fa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

c3/optimizers/c1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def goal_run(self, current_params: tf.Tensor) -> tf.float64:
134134
if self.update_model:
135135
self.pmap.model.update_model()
136136
dims = self.pmap.model.dims
137-
propagators = self.exp.get_gates()
137+
propagators = self.exp.compute_propagators()
138138
try:
139139
goal = self.fid_func(propagators, self.index, dims, self.evaluation + 1)
140140
except TypeError:

c3/optimizers/c3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def _one_par_sim_vals(
190190
# We find the unique gates used in the sequence and compute
191191
# only those.
192192
self.exp.opt_gates = list(set(itertools.chain.from_iterable(sequences)))
193-
self.exp.get_gates()
193+
self.exp.compute_propagators()
194194
pops = self.exp.evaluate(sequences)
195195
sim_vals, pops = self.exp.process(
196196
labels=self.state_labels[target], populations=pops

c3/optimizers/optimizer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def log_best_unitary(self) -> None:
133133
Save the best unitary in the log.
134134
"""
135135
with open(self.logdir + "best_point_" + self.logname, "w") as best_point:
136-
U_dict = self.exp.unitaries
136+
U_dict = self.exp.propagators
137137
for gate, U in U_dict.items():
138138
best_point.write("\n")
139139
best_point.write(f"Re {gate}: \n")

c3/optimizers/sensitivity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def goal_run(self, current_params):
232232
# We find the unique gates used in the sequence and compute
233233
# only them.
234234
self.exp.opt_gates = list(set(itertools.chain.from_iterable(sequences)))
235-
self.exp.get_gates()
235+
self.exp.compute_propagators()
236236
pops = self.exp.evaluate(sequences)
237237
sim_vals = self.exp.process(
238238
labels=self.state_labels[target], populations=pops

c3/qiskit/c3_backend.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ def run_experiment(self, experiment: QasmQobjExperiment) -> Dict[str, Any]:
264264
pop_t = np.append(pop_t, pops, axis=1)
265265

266266
elif self._simulation_type == "physics":
267-
exp.get_gates()
268-
dUs = exp.dUs
267+
exp.compute_propagators()
268+
dUs = exp.partial_propagators
269269
# TODO Implement extracting n_qubits and n_levels from device
270270
# create initial state for qubits and levels
271271
psi_init = get_init_ground_state(

0 commit comments

Comments
 (0)