diff --git a/dpbench/infrastructure/benchmark_results.py b/dpbench/infrastructure/benchmark_results.py index d4b73239..43d04128 100644 --- a/dpbench/infrastructure/benchmark_results.py +++ b/dpbench/infrastructure/benchmark_results.py @@ -132,6 +132,12 @@ def print(self, framework_name: str = "", framework_version: str = ""): "median execution times:", self._format_ns(self.median_exec_time), ) + print( + "warmup overhead time (warmup time - median execution time):", + self._format_ns( + int(self.warmup_time) - int(self.median_exec_time) + ), + ) print("repeats:", self.repeats) print("preset:", self.preset) print("validated:", self.validation_state)