From 48b23064393417119b1c63aa8fa4251d666c6297 Mon Sep 17 00:00:00 2001 From: jainapurva Date: Wed, 4 Jun 2025 10:33:05 -0700 Subject: [PATCH 1/2] Remove additional baseline calculation --- benchmarks/microbenchmarks/benchmark_runner.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/benchmarks/microbenchmarks/benchmark_runner.py b/benchmarks/microbenchmarks/benchmark_runner.py index 8066b71714..45a0534ee0 100644 --- a/benchmarks/microbenchmarks/benchmark_runner.py +++ b/benchmarks/microbenchmarks/benchmark_runner.py @@ -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)) From c51425f16697542b51bc7af4f70231a6b33e7b4b Mon Sep 17 00:00:00 2001 From: jainapurva Date: Wed, 4 Jun 2025 10:58:49 -0700 Subject: [PATCH 2/2] Fix date format --- benchmarks/microbenchmarks/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/microbenchmarks/utils.py b/benchmarks/microbenchmarks/utils.py index cbd864d6fe..ff578059c0 100644 --- a/benchmarks/microbenchmarks/utils.py +++ b/benchmarks/microbenchmarks/utils.py @@ -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)