From a28a7bf3975eb4ee4ee65f7d366dc82c53a227c4 Mon Sep 17 00:00:00 2001 From: rudy Date: Thu, 10 Aug 2023 20:55:43 +0200 Subject: [PATCH] feat(compiler): bench, activate levelled ops --- compilers/concrete-compiler/compiler/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/compilers/concrete-compiler/compiler/Makefile b/compilers/concrete-compiler/compiler/Makefile index 30eb06900..fd1c38004 100644 --- a/compilers/concrete-compiler/compiler/Makefile +++ b/compilers/concrete-compiler/compiler/Makefile @@ -362,7 +362,14 @@ $(BENCHMARK_CPU_DIR)/end_to_end_round.yaml: tests/end_to_end_fixture/end_to_end_ $(BENCHMARK_CPU_DIR)/%.yaml: tests/end_to_end_fixture/%_gen.py $(Python3_EXECUTABLE) $< > $@ -generate-cpu-benchmarks: $(BENCHMARK_CPU_DIR) $(BENCHMARK_CPU_DIR)/end_to_end_linalg_apply_lookup_table.yaml $(BENCHMARK_CPU_DIR)/end_to_end_apply_lookup_table.yaml $(BENCHMARK_CPU_DIR)/end_to_end_round.yaml + +BENCHS_CPU = \ + $(BENCHMARK_CPU_DIR)/end_to_end_linalg_apply_lookup_table.yaml \ + $(BENCHMARK_CPU_DIR)/end_to_end_apply_lookup_table.yaml \ + $(BENCHMARK_CPU_DIR)/end_to_end_round.yaml \ + $(BENCHMARK_CPU_DIR)/end_to_end_linalg_leveled.yaml + +generate-cpu-benchmarks: $(BENCHMARK_CPU_DIR) $(BENCHS_CPU) SECURITY_TO_BENCH=128 OPTIMIZATION_STRATEGY_TO_TEST=dag-mono dag-multi