Skip to content

Commit

Permalink
Public Dev Sync-6 December 2020
Browse files Browse the repository at this point in the history
* v1.3.0 updates to CMakeLists.tx
* v1.3.0 adjust test tolerance
  • Loading branch information
faberga authored Dec 10, 2020
2 parents 955e04d + 892a6c7 commit d50e701
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion benchmarks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ endif (NOT CMAKE_BUILD_TYPE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "RelWithDebInfo" "Release" "MinSizeRel")

find_package(helib 1.1.0 EXACT REQUIRED)
find_package(helib 1.3.0 EXACT REQUIRED)
find_package(benchmark REQUIRED)

# Targets are simply associated with their source files.
Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")

find_package(helib 1.1.0 EXACT REQUIRED)
find_package(helib 1.3.0 EXACT REQUIRED)

add_subdirectory(BGV_binary_arithmetic)
add_subdirectory(BGV_country_db_lookup)
Expand Down
2 changes: 1 addition & 1 deletion misc/psi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")

find_package(helib 1.1.0 EXACT REQUIRED)
find_package(helib 1.3.0 EXACT REQUIRED)

add_subdirectory(scoring)
add_subdirectory(lookup)
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

project(helib
VERSION 1.1.0
VERSION 1.3.0
LANGUAGES CXX)

# Globals HELIB_CMAKE_EXTRA_DIR, HELIB_INCLUDE_DIR, HELIB_HEADER_DIR,
Expand Down
2 changes: 1 addition & 1 deletion tests/TestMatmulCKKS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ TEST_P(TestMatmulCKKS, vectorToMatrixMultiplication)
ptxt.store(w);

for (long i = 0; i < ea.size(); ++i) {
EXPECT_NEAR(w[i], w1[i], 0.01);
EXPECT_NEAR(w[i], w1[i], 0.015);
}
}

Expand Down
2 changes: 1 addition & 1 deletion utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")

find_package(helib 1.1.0 EXACT REQUIRED)
find_package(helib 1.3.0 EXACT REQUIRED)

add_subdirectory(create-context)
add_subdirectory(crypto)
Expand Down

0 comments on commit d50e701

Please sign in to comment.