feat(shortint): add support for small LWE key encryption

This commit is contained in:
Arthur Meyre
2023-02-21 17:24:10 +01:00
parent 42b569bcd7
commit a04d68f1fb
86 changed files with 6218 additions and 2150 deletions

View File

@@ -48,4 +48,12 @@ if [[ "${BUILD_ONLY}" == "1" ]]; then
exit 0
fi
make "test"
nproc_bin=nproc
# macOS detects CPUs differently
if [[ $(uname) == "Darwin" ]]; then
nproc_bin="sysctl -n hw.logicalcpu"
fi
# Let's go parallel
ARGS="-j$("${nproc_bin}")" make test