Skip to content

Commit 8e28f02

Browse files
committed
Fix mismatch between milliseconds and seconds
1 parent 05bc4a6 commit 8e28f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel_tuner/runners/sequential.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def run(self, parameter_space, tuning_options):
115115
params = process_metrics(params, tuning_options.metrics)
116116

117117
# get the framework time by estimating based on other times
118-
total_time = 1000 * ((perf_counter() - self.start_time) - warmup_time)
118+
total_time = 1000 * (perf_counter() - self.start_time) - warmup_time
119119
params["strategy_time"] = strategy_time_per_config
120120
params["framework_time"] = max(
121121
total_time

0 commit comments

Comments
 (0)