Skip to content

Commit d50e701

Browse files
authored
Public Dev Sync-6 December 2020
* v1.3.0 updates to CMakeLists.tx * v1.3.0 adjust test tolerance
2 parents 955e04d + 892a6c7 commit d50e701

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

benchmarks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ endif (NOT CMAKE_BUILD_TYPE)
4747
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
4848
"Debug" "RelWithDebInfo" "Release" "MinSizeRel")
4949

50-
find_package(helib 1.1.0 EXACT REQUIRED)
50+
find_package(helib 1.3.0 EXACT REQUIRED)
5151
find_package(benchmark REQUIRED)
5252

5353
# Targets are simply associated with their source files.

examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
3131
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
3232
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")
3333

34-
find_package(helib 1.1.0 EXACT REQUIRED)
34+
find_package(helib 1.3.0 EXACT REQUIRED)
3535

3636
add_subdirectory(BGV_binary_arithmetic)
3737
add_subdirectory(BGV_country_db_lookup)

misc/psi/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
3131
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
3232
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")
3333

34-
find_package(helib 1.1.0 EXACT REQUIRED)
34+
find_package(helib 1.3.0 EXACT REQUIRED)
3535

3636
add_subdirectory(scoring)
3737
add_subdirectory(lookup)

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
1414

1515
project(helib
16-
VERSION 1.1.0
16+
VERSION 1.3.0
1717
LANGUAGES CXX)
1818

1919
# Globals HELIB_CMAKE_EXTRA_DIR, HELIB_INCLUDE_DIR, HELIB_HEADER_DIR,

tests/TestMatmulCKKS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ TEST_P(TestMatmulCKKS, vectorToMatrixMultiplication)
209209
ptxt.store(w);
210210

211211
for (long i = 0; i < ea.size(); ++i) {
212-
EXPECT_NEAR(w[i], w1[i], 0.01);
212+
EXPECT_NEAR(w[i], w1[i], 0.015);
213213
}
214214
}
215215

utils/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
3131
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
3232
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")
3333

34-
find_package(helib 1.1.0 EXACT REQUIRED)
34+
find_package(helib 1.3.0 EXACT REQUIRED)
3535

3636
add_subdirectory(create-context)
3737
add_subdirectory(crypto)

0 commit comments

Comments
 (0)