Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions devops/scripts/benchmarks/benches/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def download(
self.data_path = self.create_data_path(name, skip_data_dir)
return download(self.data_path, url, file, untar, unzip, checksum)

def lower_is_better(self):
def lower_is_better(self) -> bool:
return True

def stddev_threshold(self):
Expand All @@ -226,7 +226,7 @@ def stddev_threshold(self):
def get_suite_name(self) -> str:
return self.suite.name()

def description(self):
def description(self) -> str:
return ""

def notes(self) -> str:
Expand Down
Loading