Skip to content

Commit

Permalink
Fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
fjclark committed Jun 7, 2024
1 parent b0b8f58 commit 4848f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ If you want to repeat the adaptive runs and obtain similar simulation times to t
```python
import a3fe as a3
calc = a3.Calculation()
cost = calc.tot_gpu_time/calc.tot_time
cost = calc.legs[0].tot_gpu_time/calc.legs[0].tot_simtime # First leg is the bound leg
print(cost) # In hr/ns
```
You should then modify the `run_adaptive.py` script to match this cost (specifically the `reference_sim_cost` argument to `get_optimal_lam_vals`).
Expand Down

0 comments on commit 4848f43

Please sign in to comment.