Skip to content

Commit

Permalink
Cardio benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
jellevos committed Jan 21, 2025
1 parent e33a437 commit a2cb549
Show file tree
Hide file tree
Showing 7 changed files with 5,978 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ instructions.txt
.sphinx_build/
/dist
*.svg
*.pyc
6 changes: 6 additions & 0 deletions helib_template/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/CMakeFiles
CMakeCache.txt
cmake_install.cmake
helib.log
Makefile
main
9 changes: 9 additions & 0 deletions helib_template/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(helib)
add_executable(main main.cpp)
target_link_libraries(main helib)
Binary file added helib_template/addchain_cache.db
Binary file not shown.
Loading

0 comments on commit a2cb549

Please sign in to comment.