Skip to content

Commit 8fbd57c

Browse files
authored
Do not disable verification (#4183)
Disabling verification makes runs 2 and others slower than the first run. Without disabling verification the variation in general is smaller, and there is no such difference between the first and other runs. Fixes #4094. Signed-off-by: Pavel Chekin <[email protected]>
1 parent 20e2308 commit 8fbd57c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

benchmarks/triton_kernels_benchmark/benchmark_testing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,6 @@ def run(self, show_plots=False, print_data=False, return_df=False, save_precisio
361361
for bench in benchmarks:
362362
benchmark_dfs = []
363363
for run_counter in range(args.n_runs):
364-
if run_counter > 0:
365-
disable_verification()
366364
df = self._run(bench, args.reports, show_plots, print_data, run_counter=run_counter, **kwargs)
367365
df["datetime"] = datetime.datetime.now()
368366
df["run_counter"] = run_counter + 1

0 commit comments

Comments
 (0)