My working unpac space for OCaml projects in development
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #4515 from cclauss/patch-1

Fix undefined names in automated_benchmarking.py

authored by

Yann Collet and committed by
GitHub
8df20e32 1267762f

+2 -2
+2 -2
vendor/git/zstd-c/tests/automated_benchmarking.py
··· 225 225 for j, level in enumerate(levels): 226 226 old_cspeed, old_dspeed = old[j] 227 227 new_cspeed, new_dspeed = new[j] 228 - cspeed_reg, dspeed_reg, baesline_label, test_label = parse_regressions_and_labels( 228 + cspeed_reg, dspeed_reg, baseline_label, test_label = parse_regressions_and_labels( 229 229 old_cspeed, new_cspeed, old_dspeed, new_dspeed, baseline_build, test_build 230 230 ) 231 231 if cspeed_reg > CSPEED_REGRESSION_TOLERANCE: ··· 315 315 quit() 316 316 317 317 if mode == "onetime": 318 - main(filenames, levels, iterations, frequency=frequenc, dictionary_filename=dictionary_filename) 318 + main(filenames, levels, iterations, frequency=frequency, dictionary_filename=dictionary_filename) 319 319 elif mode == "current": 320 320 builds = [{"user": None, "branch": "None", "hash": None}] 321 321 main(filenames, levels, iterations, builds, frequency=frequency, dictionary_filename=dictionary_filename)