Skip to content

Commit 45e8b96

Browse files
Calling LitinskiTransformation with use_ppr=True in asv (#15922)
* Calling LitinskiTransformation with use_ppr=True * updating slow tests
1 parent 9582e27 commit 45e8b96

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

test/benchmarks/passes.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,8 @@ class LitinskiTransformationPassBenchmarks:
224224
params = (circuit_names, num_qubits)
225225
param_names = ["circuit_name", "n_qubits"]
226226
slow_tests = {
227-
("qft", 512),
228-
("qaoa", 256),
229227
("qaoa", 512),
230228
("grover", 512),
231-
("multiplier", 256),
232229
("multiplier", 512),
233230
}
234231
timeout = 300
@@ -253,5 +250,5 @@ def setup(self, circuit_name, n_qubits):
253250
self.dag = circuit_to_dag(transpiled)
254251

255252
def time_litinski_transformation(self, _, __):
256-
_pass = LitinskiTransformation()
253+
_pass = LitinskiTransformation(use_ppr=True)
257254
_pass.run(self.dag)

0 commit comments

Comments
 (0)