From 4848f43fe9c1411f308b502e1a9e1de5639a8c6c Mon Sep 17 00:00:00 2001 From: finlayclark Date: Fri, 7 Jun 2024 17:35:09 +0100 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5d72ee..73882a4 100644 --- a/README.md +++ b/README.md @@ -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`).