Skip to content

Commit

Permalink
Merge pull request #598 from SRI-International/compiler-opt-changes-TL
Browse files Browse the repository at this point in the history
Fixed error in handling of --data_suffix
  • Loading branch information
rtvuser1 authored Aug 4, 2024
2 parents df800a5 + bf9a135 commit 8fca250
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hamlib/qiskit/hamlib_simulation_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,9 @@ def get_args():
ex.verbose = args.verbose
verbose = args.verbose
hamlib_simulation_kernel.verbose = args.verbose
metrics.data_suffix = args.data_suffix

if args.data_suffix is not None:
metrics.data_suffix = args.data_suffix

if args.num_qubits > 0: args.min_qubits = args.max_qubits = args.num_qubits

Expand Down

0 comments on commit 8fca250

Please sign in to comment.