Skip to content

Commit

Permalink
Refine print of circuit when method 3 is used
Browse files Browse the repository at this point in the history
  • Loading branch information
rtvuser1 committed Jun 8, 2024
1 parent f9dd679 commit ac65cd1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,17 @@ def execution_handler(qc, result, num_qubits, type, num_shots):
print(XX_)
print(YY_)
print(ZZ_)
if method == 3:
print("\nXX, YY, ZZ mirror=")
print(XX_mirror_)
print(YY_mirror_)
print(ZZ_mirror_)
else:
print("\nXXYYZZ_opt =")
print(XXYYZZ_)
if method == 3:
print("\nXXYYZZ_opt_mirror =")
print(XXYYZZ_mirror_)

# Plot metrics for all circuit sizes
metrics.plot_metrics(f"Benchmark Results - {benchmark_name} - Qiskit")
Expand Down

0 comments on commit ac65cd1

Please sign in to comment.