Skip to content

Commit

Permalink
Remove factor of 6 (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterinaGratsea authored Aug 20, 2024
1 parent f8e0a38 commit 98c59f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/benchq/resource_estimators/graph_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def estimate_resources_from_compiled_implementation(

# get time to get a single shot
time_per_circuit_in_seconds = (
6 * num_cycles * hw_model.surface_code_cycle_time_in_seconds
num_cycles * hw_model.surface_code_cycle_time_in_seconds
)

total_time_in_seconds = (
Expand Down

0 comments on commit 98c59f9

Please sign in to comment.