chore: Final layout of the concrete project

This commit is contained in:
Quentin Bourgerie
2023-03-21 16:21:08 +01:00
parent a1a955f5e2
commit 128734a682
4 changed files with 2 additions and 7 deletions

4
.gitmodules vendored
View File

@@ -2,10 +2,6 @@
path = third_party/llvm-project
url = git@github.com:zama-ai/concrete-compiler-internal-llvm-project.git
shallow = true
[submodule "compiler/parameter-curves"]
path = compilers/concrete-compiler/compiler/parameter-curves
url = git@github.com:zama-ai/parameter-curves.git
shallow = true
[submodule "lattice-estimator"]
path = tools/parameter-curves/lattice-estimator
url = https://github.com/malb/lattice-estimator

View File

@@ -58,7 +58,7 @@ set(CONCRETELANG_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
# -------------------------------------------------------------------------------
# Concrete Security curves Configuration
# -------------------------------------------------------------------------------
include_directories(${PROJECT_SOURCE_DIR}/parameter-curves/concrete-security-curves-cpp/include)
include_directories(${PROJECT_SOURCE_DIR}/../../../tools/parameter-curves/concrete-security-curves-cpp/include)
# -------------------------------------------------------------------------------
# Concrete Optimizer

View File

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
concrete-security-curves = { git = "ssh://git@github.com/zama-ai/parameter-curves.git", rev = "05184593ada0eb1116a42a70674e6e3eea5e108e" }
concrete-security-curves = { path = "../../../tools/parameter-curves/concrete-security-curves-rust" }
concrete-cpu-noise-model = { path = "../../../backends/concrete-cpu/noise-model/" }
file-lock = "2.1.6"
serde = { version = "1.0", features = ["derive"] }