Skip to content

Commit

Permalink
comment out unused benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Jun 14, 2024
1 parent 16700b7 commit a321a3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fitting.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ def test_duptake_fit(hdxm_apo: HDXMeasurement):
def test_global_fit(hdxm_apo: HDXMeasurement):
initial_rates = csv_to_dataframe(output_dir / "ecSecB_guess.csv")

t0 = time.time() # Very crude benchmarks
# t0 = time.time() # Very crude benchmarks
gibbs_guess = hdxm_apo.guess_deltaG(initial_rates["rate"])
fr_global = fit_gibbs_global(hdxm_apo, gibbs_guess, epochs=1000, r1=2)
t1 = time.time()
# t1 = time.time()

# assert t1 - t0 < 5 # Fails sometimes
out_deltaG = fr_global.output
Expand Down

0 comments on commit a321a3f

Please sign in to comment.