From b0470f1690bb011a1d1eeb43bc8471a556c9d760 Mon Sep 17 00:00:00 2001 From: rashmi2383 Date: Mon, 6 Nov 2023 22:41:28 -0500 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 746fa8c..20089da 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ Moreover, the security level constraints limit the number of possible parameter Organization of the Repo: 1) params.py - Add/Modify all the architectural and scheme-related parameters in this file. -2) perf_counter.py - Accounts for the operation count and data transfers from main memory. -3) experiment.py - Run this script to execute the various benchmarks. It imports params.py and perf_counter.py script files. +2) perf_counter.py and profiler.py - These two scripts together account for the operation count and data transfers from main memory. +3) experiment.py - Run this script to execute the various benchmarks. It imports params, perf_counter, and profiler. 4) evaluator.py - Defines all primitive operations in the CKKS FHE scheme. +5) poly.py - Defines all polynomial level operations such as poly add, mult, NTT, iNTT, and automorph. You will need Python3 or up to run various scripts in this repo.