Sub-package for CKKS bootstrapping with improved parameters and new functionalities (#139)

cf. CHANGELOG.md
This commit is contained in:
Jean-Philippe Bossuat
2021-09-19 11:42:22 +02:00
committed by GitHub
parent c629f0c951
commit 8652b8d701
84 changed files with 6627 additions and 5571 deletions

View File

@@ -15,12 +15,14 @@ test_examples:
@echo ok
@echo Building resources-heavy examples
go build -o /dev/null ./examples/ckks/bootstrapping
go build -o /dev/null ./examples/ckks/advanced
@echo ok
.PHONY: test_gotest
test_gotest:
go test -v -timeout=0 ./utils ./ring ./bfv ./dbfv ./dckks
go test -v -timeout=0 ./ckks -test-bootstrapping
go test -v -timeout=0 ./ckks/advanced
go test -v -timeout=0 ./ckks/bootstrapping -test-bootstrapping -short
.PHONY: test
test: test_fmt test_gotest test_examples