Skip to content

Commit

Permalink
sq xdpbenchmeasurement
Browse files Browse the repository at this point in the history
  • Loading branch information
enhaut committed Aug 3, 2023
1 parent af969de commit 93d9fba
Showing 1 changed file with 0 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
# ]
# )

0 comments on commit 93d9fba

Please sign in to comment.