This repo is forked from the main Microsoft SEAL repo and contains the linear regrerssion program using Microsoft SEAL BFV Scheme. The main repo can be found at https://github.com/microsoft/SEAL
The BFV program for linear regression is at https://github.com/jason-dou/seal-capstone/blob/main/native/examples/linear-regression.cpp
To run the Microsoft SEAL BFV linear regression program:
- Clone the repo from github
git clone https://github.com/jason-dou/seal-capstone.git
cd seal-capstone
cmake -S . -B build -DSEAL_BUILD_EXAMPLES=ON
cmake --build build
- To run the programs:
- BFV:
./build/bin/linear-regression-bfv
- CKKS:
./build/bin/linear-regression-ckks
- BFV:
To run an updated version the linear-regression with new changes:
cmake --build build
- To run the programs:
- BFV:
./build/bin/linear-regression-bfv
- CKKS:
./build/bin/linear-regression-ckks
- BFV: