diff --git a/lnst/RecipeCommon/Perf/Measurements/Results/XDPBenchMeasurementResults.py b/lnst/RecipeCommon/Perf/Measurements/Results/XDPBenchMeasurementResults.py index a3f30bee7..463ad58ee 100644 --- a/lnst/RecipeCommon/Perf/Measurements/Results/XDPBenchMeasurementResults.py +++ b/lnst/RecipeCommon/Perf/Measurements/Results/XDPBenchMeasurementResults.py @@ -28,44 +28,3 @@ def time_slice(self, start, end): return result_copy - # @property - # def start_timestamp(self): - # return min( - # [ - # self.generator_results.start_timestamp, - # self.receiver_results.start_timestamp, - # ] - # ) - # - # @property - # def end_timestamp(self): - # return max( - # [ - # self.generator_results.end_timestamp, - # self.receiver_results.end_timestamp, - # ] - # ) - # - # @property - # def warmup_end(self): - # if self.warmup_duration == 0: - # return self.start_timestamp - # - # return max( - # [ - # parallel[self.warmup_duration - 1].end_timestamp - # for parallel in (*self.generator_results, *self.receiver_results) - # ] - # ) - # - # @property - # def warmdown_start(self): - # if self.warmup_duration == 0: - # return self.end_timestamp - # - # return min( - # [ - # parallel[-self.warmup_duration].start_timestamp - # for parallel in (*self.generator_results, *self.receiver_results) - # ] - # )