Skip to content

[Benchmarks] Remove additional baseline calculation #2303

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
3 changes: 0 additions & 3 deletions benchmarks/microbenchmarks/benchmark_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,6 @@ def get_quantization_sparsity_recipes(
"""
config_recipes = set()

# Always include baseline without sparsity
config_recipes.add(("baseline", None))

# Add all quantization techniques without sparsity
for quant_config in quantization_recipes:
config_recipes.add((quant_config, None))
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/microbenchmarks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def generate_results_csv(
os.makedirs(output_dir, exist_ok=True)
# Generate the filename with the current date and time in the specified format
if file_name is None:
file_name = datetime.now().strftime("results_%d%m%Y_%H%M%S.csv")
file_name = datetime.now().strftime("results_%m%d%Y_%H%M%S.csv")

file_path = os.path.join(output_dir, file_name)

Expand Down
Loading