diff --git a/.github/workflows/scripts/check_for_license.sh b/.github/workflows/scripts/check_for_license.sh index a30453fd6..18298db29 100755 --- a/.github/workflows/scripts/check_for_license.sh +++ b/.github/workflows/scripts/check_for_license.sh @@ -12,8 +12,8 @@ for file in $files do cmp <(head -n 4 $file) <(echo "// Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information.") || print_and_exit $file +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information.") || print_and_exit $file done # Ignore python package namespace init file @@ -22,5 +22,5 @@ files=$(find ./compiler/{include,lib,src} -iregex '^.*\.\(py\)$' ! -path ./compi for file in $files do cmp <(head -n 2 $file) <(echo "# Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information.") || print_and_exit $file +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information.") || print_and_exit $file done diff --git a/README.md b/README.md index 489e472ec..5700733b3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Homomorphizer +# Concrete Compiler -The homomorphizer is a compiler that takes a high level computation model and produces a programs that evaluate the model in an homomorphic way. +The Concrete Compiler takes a high level computation model and produces a programs that evaluate the model in an homomorphic way. ## Build tarball diff --git a/compiler/README.md b/compiler/README.md index 73d77dd2b..68c3d4d9e 100644 --- a/compiler/README.md +++ b/compiler/README.md @@ -37,7 +37,7 @@ Test the compiler ```sh #TODO: let cmake set this PATH -export LD_LIBRARY_PATH="path_to_homomorphizer/compiler/build/lib/Runtime/" +export LD_LIBRARY_PATH="path_to_concrete-compiler/compiler/build/lib/Runtime/" make test ``` diff --git a/compiler/include/concretelang-c/Dialect/FHE.h b/compiler/include/concretelang-c/Dialect/FHE.h index 7ffd3e003..ddc40a23d 100644 --- a/compiler/include/concretelang-c/Dialect/FHE.h +++ b/compiler/include/concretelang-c/Dialect/FHE.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_C_DIALECT_FHE_H #define CONCRETELANG_C_DIALECT_FHE_H diff --git a/compiler/include/concretelang-c/Dialect/FHELinalg.h b/compiler/include/concretelang-c/Dialect/FHELinalg.h index 51387ced6..783c41442 100644 --- a/compiler/include/concretelang-c/Dialect/FHELinalg.h +++ b/compiler/include/concretelang-c/Dialect/FHELinalg.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_C_DIALECT_FHELINALG_H #define CONCRETELANG_C_DIALECT_FHELINALG_H diff --git a/compiler/include/concretelang-c/Support/CompilerEngine.h b/compiler/include/concretelang-c/Support/CompilerEngine.h index 060a79fa9..7f3300f28 100644 --- a/compiler/include/concretelang-c/Support/CompilerEngine.h +++ b/compiler/include/concretelang-c/Support/CompilerEngine.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_C_SUPPORT_COMPILER_ENGINE_H #define CONCRETELANG_C_SUPPORT_COMPILER_ENGINE_H diff --git a/compiler/include/concretelang/ClientLib/ClientParameters.h b/compiler/include/concretelang/ClientLib/ClientParameters.h index d929aed71..ac566230b 100644 --- a/compiler/include/concretelang/ClientLib/ClientParameters.h +++ b/compiler/include/concretelang/ClientLib/ClientParameters.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CLIENTLIB_CLIENTPARAMETERS_H_ #define CONCRETELANG_CLIENTLIB_CLIENTPARAMETERS_H_ diff --git a/compiler/include/concretelang/ClientLib/KeySet.h b/compiler/include/concretelang/ClientLib/KeySet.h index b0cea57f9..d45aca4e3 100644 --- a/compiler/include/concretelang/ClientLib/KeySet.h +++ b/compiler/include/concretelang/ClientLib/KeySet.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_KEYSET_H_ #define CONCRETELANG_SUPPORT_KEYSET_H_ diff --git a/compiler/include/concretelang/ClientLib/KeySetCache.h b/compiler/include/concretelang/ClientLib/KeySetCache.h index 7539d470e..4d31f8150 100644 --- a/compiler/include/concretelang/ClientLib/KeySetCache.h +++ b/compiler/include/concretelang/ClientLib/KeySetCache.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_KEYSETCACHE_H_ #define CONCRETELANG_SUPPORT_KEYSETCACHE_H_ diff --git a/compiler/include/concretelang/Conversion/ConcreteToConcreteCAPI/Pass.h b/compiler/include/concretelang/Conversion/ConcreteToConcreteCAPI/Pass.h index 55c91fe0d..68eaa1c5d 100644 --- a/compiler/include/concretelang/Conversion/ConcreteToConcreteCAPI/Pass.h +++ b/compiler/include/concretelang/Conversion/ConcreteToConcreteCAPI/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_CONCRETETOCONCRETECAPI_PASS_H_ #define CONCRETELANG_CONVERSION_CONCRETETOCONCRETECAPI_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/ConcreteUnparametrize/Pass.h b/compiler/include/concretelang/Conversion/ConcreteUnparametrize/Pass.h index fd20e4c70..254492634 100644 --- a/compiler/include/concretelang/Conversion/ConcreteUnparametrize/Pass.h +++ b/compiler/include/concretelang/Conversion/ConcreteUnparametrize/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_CONCRETEUNPARAMETRIZE_PASS_H_ #define CONCRETELANG_CONVERSION_CONCRETEUNPARAMETRIZE_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/FHETensorOpsToLinalg/Pass.h b/compiler/include/concretelang/Conversion/FHETensorOpsToLinalg/Pass.h index 1488aa6b2..31ebbf5d9 100644 --- a/compiler/include/concretelang/Conversion/FHETensorOpsToLinalg/Pass.h +++ b/compiler/include/concretelang/Conversion/FHETensorOpsToLinalg/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_FHETENSOROPSTOLINALG_PASS_H_ #define CONCRETELANG_CONVERSION_FHETENSOROPSTOLINALG_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/FHEToTFHE/Pass.h b/compiler/include/concretelang/Conversion/FHEToTFHE/Pass.h index 9d98e963e..c0d3e9043 100644 --- a/compiler/include/concretelang/Conversion/FHEToTFHE/Pass.h +++ b/compiler/include/concretelang/Conversion/FHEToTFHE/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_FHETOTFHE_PASS_H_ #define CONCRETELANG_CONVERSION_FHETOTFHE_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/FHEToTFHE/Patterns.h b/compiler/include/concretelang/Conversion/FHEToTFHE/Patterns.h index ba85df257..56b7aac2a 100644 --- a/compiler/include/concretelang/Conversion/FHEToTFHE/Patterns.h +++ b/compiler/include/concretelang/Conversion/FHEToTFHE/Patterns.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_FHETOTFHE_PATTERNS_H_ #define CONCRETELANG_CONVERSION_FHETOTFHE_PATTERNS_H_ diff --git a/compiler/include/concretelang/Conversion/MLIRLowerableDialectsToLLVM/Pass.h b/compiler/include/concretelang/Conversion/MLIRLowerableDialectsToLLVM/Pass.h index eedf63219..a41a8761e 100644 --- a/compiler/include/concretelang/Conversion/MLIRLowerableDialectsToLLVM/Pass.h +++ b/compiler/include/concretelang/Conversion/MLIRLowerableDialectsToLLVM/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_MLIRLOWERABLEDIALECTSTOLLVM_PASS_H_ #define CONCRETELANG_CONVERSION_MLIRLOWERABLEDIALECTSTOLLVM_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/Passes.h b/compiler/include/concretelang/Conversion/Passes.h index 58d5d9ed3..fcfc9b4ef 100644 --- a/compiler/include/concretelang/Conversion/Passes.h +++ b/compiler/include/concretelang/Conversion/Passes.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_TRANSFORMS_PASSES_H #define CONCRETELANG_TRANSFORMS_PASSES_H diff --git a/compiler/include/concretelang/Conversion/TFHEGlobalParametrization/Pass.h b/compiler/include/concretelang/Conversion/TFHEGlobalParametrization/Pass.h index 5bc5f4523..5a0429b48 100644 --- a/compiler/include/concretelang/Conversion/TFHEGlobalParametrization/Pass.h +++ b/compiler/include/concretelang/Conversion/TFHEGlobalParametrization/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_TFHEGLOBALPARAMETRIZATION_PASS_H_ #define CONCRETELANG_CONVERSION_TFHEGLOBALPARAMETRIZATION_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/TFHEToConcrete/Pass.h b/compiler/include/concretelang/Conversion/TFHEToConcrete/Pass.h index d69636a34..36e744753 100644 --- a/compiler/include/concretelang/Conversion/TFHEToConcrete/Pass.h +++ b/compiler/include/concretelang/Conversion/TFHEToConcrete/Pass.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_TFHETOCONCRETE_PASS_H_ #define CONCRETELANG_CONVERSION_TFHETOCONCRETE_PASS_H_ diff --git a/compiler/include/concretelang/Conversion/TFHEToConcrete/Patterns.h b/compiler/include/concretelang/Conversion/TFHEToConcrete/Patterns.h index b2f64ace5..dcc1d460b 100644 --- a/compiler/include/concretelang/Conversion/TFHEToConcrete/Patterns.h +++ b/compiler/include/concretelang/Conversion/TFHEToConcrete/Patterns.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_TFHETOCONCRETE_PATTERNS_H_ #define CONCRETELANG_CONVERSION_TFHETOCONCRETE_PATTERNS_H_ diff --git a/compiler/include/concretelang/Conversion/Utils/GenericOpTypeConversionPattern.h b/compiler/include/concretelang/Conversion/Utils/GenericOpTypeConversionPattern.h index 13eea428f..da3b46297 100644 --- a/compiler/include/concretelang/Conversion/Utils/GenericOpTypeConversionPattern.h +++ b/compiler/include/concretelang/Conversion/Utils/GenericOpTypeConversionPattern.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_GENERICOPTYPECONVERSIONPATTERN_H_ #define CONCRETELANG_CONVERSION_GENERICOPTYPECONVERSIONPATTERN_H_ diff --git a/compiler/include/concretelang/Conversion/Utils/GlobalFHEContext.h b/compiler/include/concretelang/Conversion/Utils/GlobalFHEContext.h index 22c32461a..97ea27cb1 100644 --- a/compiler/include/concretelang/Conversion/Utils/GlobalFHEContext.h +++ b/compiler/include/concretelang/Conversion/Utils/GlobalFHEContext.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_GLOBALFHECONTEXT_H_ #define CONCRETELANG_CONVERSION_GLOBALFHECONTEXT_H_ diff --git a/compiler/include/concretelang/Conversion/Utils/RegionOpTypeConverterPattern.h b/compiler/include/concretelang/Conversion/Utils/RegionOpTypeConverterPattern.h index b85a95fbf..971d294bd 100644 --- a/compiler/include/concretelang/Conversion/Utils/RegionOpTypeConverterPattern.h +++ b/compiler/include/concretelang/Conversion/Utils/RegionOpTypeConverterPattern.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/Dialect/Linalg/IR/LinalgOps.h" #include "mlir/IR/PatternMatch.h" diff --git a/compiler/include/concretelang/Conversion/Utils/TensorOpTypeConversion.h b/compiler/include/concretelang/Conversion/Utils/TensorOpTypeConversion.h index 6eaa568c5..7d8b17ac6 100644 --- a/compiler/include/concretelang/Conversion/Utils/TensorOpTypeConversion.h +++ b/compiler/include/concretelang/Conversion/Utils/TensorOpTypeConversion.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_CONVERSION_TENSOROPTYPECONVERSIONPATTERN_H_ #define CONCRETELANG_CONVERSION_TENSOROPTYPECONVERSIONPATTERN_H_ diff --git a/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteDialect.h b/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteDialect.h index 2e2887315..847ca13ef 100644 --- a/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteDialect.h +++ b/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteDialect.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_Concrete_IR_ConcreteDIALECT_H #define CONCRETELANG_DIALECT_Concrete_IR_ConcreteDIALECT_H diff --git a/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteOps.h b/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteOps.h index b8c88bee9..a2e124186 100644 --- a/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteOps.h +++ b/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteOps.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_Concrete_Concrete_OPS_H #define CONCRETELANG_DIALECT_Concrete_Concrete_OPS_H diff --git a/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteTypes.h b/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteTypes.h index 1e7a07710..42d37dc91 100644 --- a/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteTypes.h +++ b/compiler/include/concretelang/Dialect/Concrete/IR/ConcreteTypes.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_Concrete_IR_ConcreteTYPES_H #define CONCRETELANG_DIALECT_Concrete_IR_ConcreteTYPES_H diff --git a/compiler/include/concretelang/Dialect/FHE/Analysis/MANP.h b/compiler/include/concretelang/Dialect/FHE/Analysis/MANP.h index d0d210b6b..10c6db4a7 100644 --- a/compiler/include/concretelang/Dialect/FHE/Analysis/MANP.h +++ b/compiler/include/concretelang/Dialect/FHE/Analysis/MANP.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHE_ANALYSIS_MANP_H #define CONCRETELANG_DIALECT_FHE_ANALYSIS_MANP_H diff --git a/compiler/include/concretelang/Dialect/FHE/IR/FHEDialect.h b/compiler/include/concretelang/Dialect/FHE/IR/FHEDialect.h index 5cb52d571..34f15515a 100644 --- a/compiler/include/concretelang/Dialect/FHE/IR/FHEDialect.h +++ b/compiler/include/concretelang/Dialect/FHE/IR/FHEDialect.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHE_IR_FHEDIALECT_H #define CONCRETELANG_DIALECT_FHE_IR_FHEDIALECT_H diff --git a/compiler/include/concretelang/Dialect/FHE/IR/FHEOps.h b/compiler/include/concretelang/Dialect/FHE/IR/FHEOps.h index 994e35f17..3f1bcc645 100644 --- a/compiler/include/concretelang/Dialect/FHE/IR/FHEOps.h +++ b/compiler/include/concretelang/Dialect/FHE/IR/FHEOps.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHE_IR_FHEOPS_H #define CONCRETELANG_DIALECT_FHE_IR_FHEOPS_H diff --git a/compiler/include/concretelang/Dialect/FHE/IR/FHETypes.h b/compiler/include/concretelang/Dialect/FHE/IR/FHETypes.h index b0a021e2f..0b44b583e 100644 --- a/compiler/include/concretelang/Dialect/FHE/IR/FHETypes.h +++ b/compiler/include/concretelang/Dialect/FHE/IR/FHETypes.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHE_IR_FHETYPES_H #define CONCRETELANG_DIALECT_FHE_IR_FHETYPES_H diff --git a/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgDialect.h b/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgDialect.h index d42e7018d..6736c8aab 100644 --- a/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgDialect.h +++ b/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgDialect.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHELinalg_IR_FHELinalgDIALECT_H #define CONCRETELANG_DIALECT_FHELinalg_IR_FHELinalgDIALECT_H diff --git a/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgOps.h b/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgOps.h index 40ab72a01..3858813eb 100644 --- a/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgOps.h +++ b/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgOps.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHELinalg_IR_FHELinalgOPS_H #define CONCRETELANG_DIALECT_FHELinalg_IR_FHELinalgOPS_H diff --git a/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgTypes.h b/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgTypes.h index 44eacc893..09a6b432e 100644 --- a/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgTypes.h +++ b/compiler/include/concretelang/Dialect/FHELinalg/IR/FHELinalgTypes.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_FHELinalg_IR_FHELinalgTYPES_H #define CONCRETELANG_DIALECT_FHELinalg_IR_FHELinalgTYPES_H diff --git a/compiler/include/concretelang/Dialect/FHELinalg/Transforms/Tiling.h b/compiler/include/concretelang/Dialect/FHELinalg/Transforms/Tiling.h index a27c05683..8222af7d0 100644 --- a/compiler/include/concretelang/Dialect/FHELinalg/Transforms/Tiling.h +++ b/compiler/include/concretelang/Dialect/FHELinalg/Transforms/Tiling.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_FHELINALG_TILING_PASS_H #define CONCRETELANG_FHELINALG_TILING_PASS_H diff --git a/compiler/include/concretelang/Dialect/RT/Analysis/Autopar.h b/compiler/include/concretelang/Dialect/RT/Analysis/Autopar.h index d4a01e3a1..9bf04b2b5 100644 --- a/compiler/include/concretelang/Dialect/RT/Analysis/Autopar.h +++ b/compiler/include/concretelang/Dialect/RT/Analysis/Autopar.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_RT_ANALYSIS_AUTOPAR_H #define CONCRETELANG_DIALECT_RT_ANALYSIS_AUTOPAR_H diff --git a/compiler/include/concretelang/Dialect/RT/IR/RTDialect.h b/compiler/include/concretelang/Dialect/RT/IR/RTDialect.h index ef9915b33..3e0fd89f7 100644 --- a/compiler/include/concretelang/Dialect/RT/IR/RTDialect.h +++ b/compiler/include/concretelang/Dialect/RT/IR/RTDialect.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_RT_IR_RTDIALECT_H #define CONCRETELANG_DIALECT_RT_IR_RTDIALECT_H diff --git a/compiler/include/concretelang/Dialect/RT/IR/RTOps.h b/compiler/include/concretelang/Dialect/RT/IR/RTOps.h index 641c5f966..dc9e6095d 100644 --- a/compiler/include/concretelang/Dialect/RT/IR/RTOps.h +++ b/compiler/include/concretelang/Dialect/RT/IR/RTOps.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_RT_IR_RTOPS_H #define CONCRETELANG_DIALECT_RT_IR_RTOPS_H diff --git a/compiler/include/concretelang/Dialect/RT/IR/RTTypes.h b/compiler/include/concretelang/Dialect/RT/IR/RTTypes.h index 97b92e989..eb6c06881 100644 --- a/compiler/include/concretelang/Dialect/RT/IR/RTTypes.h +++ b/compiler/include/concretelang/Dialect/RT/IR/RTTypes.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_RT_IR_RTTYPES_H #define CONCRETELANG_DIALECT_RT_IR_RTTYPES_H diff --git a/compiler/include/concretelang/Dialect/TFHE/IR/TFHEDialect.h b/compiler/include/concretelang/Dialect/TFHE/IR/TFHEDialect.h index 32a4a2551..91f241a8e 100644 --- a/compiler/include/concretelang/Dialect/TFHE/IR/TFHEDialect.h +++ b/compiler/include/concretelang/Dialect/TFHE/IR/TFHEDialect.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_TFHE_IR_TFHEDIALECT_H #define CONCRETELANG_DIALECT_TFHE_IR_TFHEDIALECT_H diff --git a/compiler/include/concretelang/Dialect/TFHE/IR/TFHEOps.h b/compiler/include/concretelang/Dialect/TFHE/IR/TFHEOps.h index ff38d0109..2153ad8b7 100644 --- a/compiler/include/concretelang/Dialect/TFHE/IR/TFHEOps.h +++ b/compiler/include/concretelang/Dialect/TFHE/IR/TFHEOps.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_TFHE_IR_TFHEOPS_H #define CONCRETELANG_DIALECT_TFHE_IR_TFHEOPS_H diff --git a/compiler/include/concretelang/Dialect/TFHE/IR/TFHETypes.h b/compiler/include/concretelang/Dialect/TFHE/IR/TFHETypes.h index 1db05eb6d..ec8de6d29 100644 --- a/compiler/include/concretelang/Dialect/TFHE/IR/TFHETypes.h +++ b/compiler/include/concretelang/Dialect/TFHE/IR/TFHETypes.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DIALECT_TFHE_IR_TFHETYPES_H #define CONCRETELANG_DIALECT_TFHE_IR_TFHETYPES_H diff --git a/compiler/include/concretelang/Runtime/DFRuntime.hpp b/compiler/include/concretelang/Runtime/DFRuntime.hpp index b31d30c1b..47570d34e 100644 --- a/compiler/include/concretelang/Runtime/DFRuntime.hpp +++ b/compiler/include/concretelang/Runtime/DFRuntime.hpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DFR_DFRUNTIME_HPP #define CONCRETELANG_DFR_DFRUNTIME_HPP diff --git a/compiler/include/concretelang/Runtime/context.h b/compiler/include/concretelang/Runtime/context.h index f4ab118df..24a6a1391 100644 --- a/compiler/include/concretelang/Runtime/context.h +++ b/compiler/include/concretelang/Runtime/context.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_RUNTIME_CONTEXT_H #define CONCRETELANG_RUNTIME_CONTEXT_H diff --git a/compiler/include/concretelang/Runtime/dfr_debug_interface.h b/compiler/include/concretelang/Runtime/dfr_debug_interface.h index 67d0382da..4221ed967 100644 --- a/compiler/include/concretelang/Runtime/dfr_debug_interface.h +++ b/compiler/include/concretelang/Runtime/dfr_debug_interface.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DRF_DEBUG_INTERFACE_H #define CONCRETELANG_DRF_DEBUG_INTERFACE_H diff --git a/compiler/include/concretelang/Runtime/distributed_generic_task_server.hpp b/compiler/include/concretelang/Runtime/distributed_generic_task_server.hpp index e1282b9cb..72d9edb5f 100644 --- a/compiler/include/concretelang/Runtime/distributed_generic_task_server.hpp +++ b/compiler/include/concretelang/Runtime/distributed_generic_task_server.hpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DFR_DISTRIBUTED_GENERIC_TASK_SERVER_HPP #define CONCRETELANG_DFR_DISTRIBUTED_GENERIC_TASK_SERVER_HPP diff --git a/compiler/include/concretelang/Runtime/key_manager.hpp b/compiler/include/concretelang/Runtime/key_manager.hpp index 8204c1b00..95f4ea6a4 100644 --- a/compiler/include/concretelang/Runtime/key_manager.hpp +++ b/compiler/include/concretelang/Runtime/key_manager.hpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_DFR_KEY_MANAGER_HPP #define CONCRETELANG_DFR_KEY_MANAGER_HPP diff --git a/compiler/include/concretelang/Runtime/runtime_api.h b/compiler/include/concretelang/Runtime/runtime_api.h index 43eb3d707..eb2a6324b 100644 --- a/compiler/include/concretelang/Runtime/runtime_api.h +++ b/compiler/include/concretelang/Runtime/runtime_api.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. /** Define the API exposed to the compiler for code generation. diff --git a/compiler/include/concretelang/Runtime/wrappers.h b/compiler/include/concretelang/Runtime/wrappers.h index 756690422..d85be42b0 100644 --- a/compiler/include/concretelang/Runtime/wrappers.h +++ b/compiler/include/concretelang/Runtime/wrappers.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_RUNTIME_WRAPPERS_H #define CONCRETELANG_RUNTIME_WRAPPERS_H diff --git a/compiler/include/concretelang/Support/CompilerEngine.h b/compiler/include/concretelang/Support/CompilerEngine.h index 4dd7c7df9..b6d014244 100644 --- a/compiler/include/concretelang/Support/CompilerEngine.h +++ b/compiler/include/concretelang/Support/CompilerEngine.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_COMPILER_ENGINE_H #define CONCRETELANG_SUPPORT_COMPILER_ENGINE_H diff --git a/compiler/include/concretelang/Support/Constants.h b/compiler/include/concretelang/Support/Constants.h index 975ea03c8..24eb4d624 100644 --- a/compiler/include/concretelang/Support/Constants.h +++ b/compiler/include/concretelang/Support/Constants.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_CONSTANTS_H_ #define CONCRETELANG_SUPPORT_CONSTANTS_H_ diff --git a/compiler/include/concretelang/Support/Error.h b/compiler/include/concretelang/Support/Error.h index 0697fc648..ce40cb240 100644 --- a/compiler/include/concretelang/Support/Error.h +++ b/compiler/include/concretelang/Support/Error.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_STRING_ERROR_H #define CONCRETELANG_SUPPORT_STRING_ERROR_H diff --git a/compiler/include/concretelang/Support/Jit.h b/compiler/include/concretelang/Support/Jit.h index db4f9a30e..d6d889078 100644 --- a/compiler/include/concretelang/Support/Jit.h +++ b/compiler/include/concretelang/Support/Jit.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef COMPILER_JIT_H #define COMPILER_JIT_H diff --git a/compiler/include/concretelang/Support/JitCompilerEngine.h b/compiler/include/concretelang/Support/JitCompilerEngine.h index 7a290040e..ad59d8fec 100644 --- a/compiler/include/concretelang/Support/JitCompilerEngine.h +++ b/compiler/include/concretelang/Support/JitCompilerEngine.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_JIT_COMPILER_ENGINE_H #define CONCRETELANG_SUPPORT_JIT_COMPILER_ENGINE_H diff --git a/compiler/include/concretelang/Support/LLVMEmitFile.h b/compiler/include/concretelang/Support/LLVMEmitFile.h index 48d3f293a..3e9001bc7 100644 --- a/compiler/include/concretelang/Support/LLVMEmitFile.h +++ b/compiler/include/concretelang/Support/LLVMEmitFile.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_LLVMEMITFILE #define CONCRETELANG_SUPPORT_LLVMEMITFILE diff --git a/compiler/include/concretelang/Support/LambdaArgument.h b/compiler/include/concretelang/Support/LambdaArgument.h index b470b5353..d58f786d9 100644 --- a/compiler/include/concretelang/Support/LambdaArgument.h +++ b/compiler/include/concretelang/Support/LambdaArgument.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_LAMBDA_ARGUMENT_H #define CONCRETELANG_SUPPORT_LAMBDA_ARGUMENT_H diff --git a/compiler/include/concretelang/Support/Pipeline.h b/compiler/include/concretelang/Support/Pipeline.h index 4beaf151e..abec3df90 100644 --- a/compiler/include/concretelang/Support/Pipeline.h +++ b/compiler/include/concretelang/Support/Pipeline.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_PIPELINE_H_ #define CONCRETELANG_SUPPORT_PIPELINE_H_ diff --git a/compiler/include/concretelang/Support/V0ClientParameters.h b/compiler/include/concretelang/Support/V0ClientParameters.h index de8b61c9c..b43f00d75 100644 --- a/compiler/include/concretelang/Support/V0ClientParameters.h +++ b/compiler/include/concretelang/Support/V0ClientParameters.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_CLIENTPARAMETERS_H_ #define CONCRETELANG_SUPPORT_CLIENTPARAMETERS_H_ diff --git a/compiler/include/concretelang/Support/V0Curves.h b/compiler/include/concretelang/Support/V0Curves.h index 889daecc1..c09af29ef 100644 --- a/compiler/include/concretelang/Support/V0Curves.h +++ b/compiler/include/concretelang/Support/V0Curves.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_V0CURVES_H_ #define CONCRETELANG_SUPPORT_V0CURVES_H_ diff --git a/compiler/include/concretelang/Support/V0Parameters.h b/compiler/include/concretelang/Support/V0Parameters.h index d58a30f9c..c669fd22c 100644 --- a/compiler/include/concretelang/Support/V0Parameters.h +++ b/compiler/include/concretelang/Support/V0Parameters.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_V0Parameter_H_ #define CONCRETELANG_SUPPORT_V0Parameter_H_ diff --git a/compiler/include/concretelang/Support/logging.h b/compiler/include/concretelang/Support/logging.h index be9dbc081..a12dd8b45 100644 --- a/compiler/include/concretelang/Support/logging.h +++ b/compiler/include/concretelang/Support/logging.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_LOGGING_H_ #define CONCRETELANG_SUPPORT_LOGGING_H_ diff --git a/compiler/include/concretelang/Support/math.h b/compiler/include/concretelang/Support/math.h index 40c3be3d3..080c125f9 100644 --- a/compiler/include/concretelang/Support/math.h +++ b/compiler/include/concretelang/Support/math.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_SUPPORT_MATH_H_ #define CONCRETELANG_SUPPORT_MATH_H_ diff --git a/compiler/include/concretelang/TestLib/Arguments.h b/compiler/include/concretelang/TestLib/Arguments.h index 85cd6996b..f7e58a47d 100644 --- a/compiler/include/concretelang/TestLib/Arguments.h +++ b/compiler/include/concretelang/TestLib/Arguments.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_TESTLIB_ARGUMENTS_H #define CONCRETELANG_TESTLIB_ARGUMENTS_H diff --git a/compiler/include/concretelang/TestLib/DynamicLambda.h b/compiler/include/concretelang/TestLib/DynamicLambda.h index aa8fe7e72..80d98d567 100644 --- a/compiler/include/concretelang/TestLib/DynamicLambda.h +++ b/compiler/include/concretelang/TestLib/DynamicLambda.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_TESTLIB_DYNAMIC_LAMBDA_H #define CONCRETELANG_TESTLIB_DYNAMIC_LAMBDA_H @@ -21,8 +21,8 @@ template llvm::Expected invoke(DynamicLambda &lambda, const Arguments &args) { // compile time error if used using COMPATIBLE_RESULT_TYPE = void; - return (Result)( - COMPATIBLE_RESULT_TYPE)0; // invoke does not accept this kind of Result + return (Result)(COMPATIBLE_RESULT_TYPE)0; // invoke does not accept this kind + // of Result } template <> diff --git a/compiler/include/concretelang/TestLib/DynamicModule.h b/compiler/include/concretelang/TestLib/DynamicModule.h index 9f59c35a9..6e092f151 100644 --- a/compiler/include/concretelang/TestLib/DynamicModule.h +++ b/compiler/include/concretelang/TestLib/DynamicModule.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_TESTLIB_DYNAMIC_MODULE_H #define CONCRETELANG_TESTLIB_DYNAMIC_MODULE_H diff --git a/compiler/include/concretelang/TestLib/dynamicArityCall.h b/compiler/include/concretelang/TestLib/dynamicArityCall.h index 2a4a68240..a722cfbe4 100644 --- a/compiler/include/concretelang/TestLib/dynamicArityCall.h +++ b/compiler/include/concretelang/TestLib/dynamicArityCall.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_TESTLIB_DYNAMIC_ARITY_CALL_H #define CONCRETELANG_TESTLIB_DYNAMIC_ARITY_CALL_H diff --git a/compiler/include/concretelang/TestLib/genDynamicArityCall.py b/compiler/include/concretelang/TestLib/genDynamicArityCall.py index 231303d47..a392c7969 100644 --- a/compiler/include/concretelang/TestLib/genDynamicArityCall.py +++ b/compiler/include/concretelang/TestLib/genDynamicArityCall.py @@ -1,5 +1,5 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. for i in range(128): args = ','.join(f'args[{j}]' for j in range(i)) diff --git a/compiler/lib/Bindings/Python/CompilerAPIModule.cpp b/compiler/lib/Bindings/Python/CompilerAPIModule.cpp index d817ec120..ac821ec10 100644 --- a/compiler/lib/Bindings/Python/CompilerAPIModule.cpp +++ b/compiler/lib/Bindings/Python/CompilerAPIModule.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "CompilerAPIModule.h" #include "concretelang-c/Support/CompilerEngine.h" diff --git a/compiler/lib/Bindings/Python/CompilerAPIModule.h b/compiler/lib/Bindings/Python/CompilerAPIModule.h index b266362e4..54575313c 100644 --- a/compiler/lib/Bindings/Python/CompilerAPIModule.h +++ b/compiler/lib/Bindings/Python/CompilerAPIModule.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_PYTHON_COMPILER_API_MODULE_H #define CONCRETELANG_PYTHON_COMPILER_API_MODULE_H diff --git a/compiler/lib/Bindings/Python/ConcretelangModule.cpp b/compiler/lib/Bindings/Python/ConcretelangModule.cpp index 4b0bad068..aea806056 100644 --- a/compiler/lib/Bindings/Python/ConcretelangModule.cpp +++ b/compiler/lib/Bindings/Python/ConcretelangModule.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "CompilerAPIModule.h" #include "DialectModules.h" diff --git a/compiler/lib/Bindings/Python/DialectModules.h b/compiler/lib/Bindings/Python/DialectModules.h index 4ec4b3cf5..579471258 100644 --- a/compiler/lib/Bindings/Python/DialectModules.h +++ b/compiler/lib/Bindings/Python/DialectModules.h @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #ifndef CONCRETELANG_PYTHON_DIALECTMODULES_H #define CONCRETELANG_PYTHON_DIALECTMODULES_H diff --git a/compiler/lib/Bindings/Python/FHEModule.cpp b/compiler/lib/Bindings/Python/FHEModule.cpp index 3e1d834aa..1066f433d 100644 --- a/compiler/lib/Bindings/Python/FHEModule.cpp +++ b/compiler/lib/Bindings/Python/FHEModule.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "DialectModules.h" diff --git a/compiler/lib/Bindings/Python/concrete/compiler.py b/compiler/lib/Bindings/Python/concrete/compiler.py index 4ff9bd6b5..45f8d84a7 100644 --- a/compiler/lib/Bindings/Python/concrete/compiler.py +++ b/compiler/lib/Bindings/Python/concrete/compiler.py @@ -1,5 +1,5 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. """Compiler submodule""" from collections.abc import Iterable diff --git a/compiler/lib/Bindings/Python/concrete/lang/__init__.py b/compiler/lib/Bindings/Python/concrete/lang/__init__.py index c59b32668..8c6ecda3b 100644 --- a/compiler/lib/Bindings/Python/concrete/lang/__init__.py +++ b/compiler/lib/Bindings/Python/concrete/lang/__init__.py @@ -1,5 +1,5 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. """Concretelang python module""" from mlir._mlir_libs._concretelang import * diff --git a/compiler/lib/Bindings/Python/concrete/lang/dialects/__init__.py b/compiler/lib/Bindings/Python/concrete/lang/dialects/__init__.py index e003e8d5a..5a0e4d0c2 100644 --- a/compiler/lib/Bindings/Python/concrete/lang/dialects/__init__.py +++ b/compiler/lib/Bindings/Python/concrete/lang/dialects/__init__.py @@ -1,3 +1,3 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. diff --git a/compiler/lib/Bindings/Python/concrete/lang/dialects/_ods_common.py b/compiler/lib/Bindings/Python/concrete/lang/dialects/_ods_common.py index a10881e05..b89818e95 100644 --- a/compiler/lib/Bindings/Python/concrete/lang/dialects/_ods_common.py +++ b/compiler/lib/Bindings/Python/concrete/lang/dialects/_ods_common.py @@ -1,5 +1,5 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. # We need this helpers from the mlir bindings, they are used in the generated files from mlir.dialects._ods_common import _cext, segmented_accessor, equally_sized_accessor, extend_opview_class, get_default_loc_context, get_op_result_or_value, get_op_results_or_values diff --git a/compiler/lib/Bindings/Python/concrete/lang/dialects/fhe.py b/compiler/lib/Bindings/Python/concrete/lang/dialects/fhe.py index c808fe8b6..70d3400ec 100644 --- a/compiler/lib/Bindings/Python/concrete/lang/dialects/fhe.py +++ b/compiler/lib/Bindings/Python/concrete/lang/dialects/fhe.py @@ -1,5 +1,5 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. """FHE dialect module""" from ._FHE_ops_gen import * diff --git a/compiler/lib/Bindings/Python/concrete/lang/dialects/fhelinalg.py b/compiler/lib/Bindings/Python/concrete/lang/dialects/fhelinalg.py index 98adf25d0..f8642243c 100644 --- a/compiler/lib/Bindings/Python/concrete/lang/dialects/fhelinalg.py +++ b/compiler/lib/Bindings/Python/concrete/lang/dialects/fhelinalg.py @@ -1,5 +1,5 @@ # Part of the Concrete Compiler Project, under the BSD3 License with Zama Exceptions. -# See https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license information. +# See https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt for license information. """FHELinalg dialect module""" from ._FHELinalg_ops_gen import * diff --git a/compiler/lib/CAPI/Dialect/FHE/FHE.cpp b/compiler/lib/CAPI/Dialect/FHE/FHE.cpp index 152a4aa1b..732ad0c01 100644 --- a/compiler/lib/CAPI/Dialect/FHE/FHE.cpp +++ b/compiler/lib/CAPI/Dialect/FHE/FHE.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang-c/Dialect/FHE.h" #include "concretelang/Dialect/FHE/IR/FHEDialect.h" diff --git a/compiler/lib/CAPI/Dialect/FHELinalg/FHELinalg.cpp b/compiler/lib/CAPI/Dialect/FHELinalg/FHELinalg.cpp index 1b6ea64e8..e96960607 100644 --- a/compiler/lib/CAPI/Dialect/FHELinalg/FHELinalg.cpp +++ b/compiler/lib/CAPI/Dialect/FHELinalg/FHELinalg.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang-c/Dialect/FHELinalg.h" #include "concretelang/Dialect/FHELinalg/IR/FHELinalgDialect.h" diff --git a/compiler/lib/CAPI/Support/CompilerEngine.cpp b/compiler/lib/CAPI/Support/CompilerEngine.cpp index 7e594c53f..9832138a9 100644 --- a/compiler/lib/CAPI/Support/CompilerEngine.cpp +++ b/compiler/lib/CAPI/Support/CompilerEngine.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "llvm/ADT/SmallString.h" diff --git a/compiler/lib/ClientLib/ClientParameters.cpp b/compiler/lib/ClientLib/ClientParameters.cpp index 02adbb205..ba711c430 100644 --- a/compiler/lib/ClientLib/ClientParameters.cpp +++ b/compiler/lib/ClientLib/ClientParameters.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/ClientLib/ClientParameters.h" diff --git a/compiler/lib/ClientLib/KeySet.cpp b/compiler/lib/ClientLib/KeySet.cpp index 596d9d1b6..f5e968830 100644 --- a/compiler/lib/ClientLib/KeySet.cpp +++ b/compiler/lib/ClientLib/KeySet.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/ClientLib/KeySet.h" #include "concretelang/Support/Error.h" diff --git a/compiler/lib/ClientLib/KeySetCache.cpp b/compiler/lib/ClientLib/KeySetCache.cpp index c060fb905..f25836d3d 100644 --- a/compiler/lib/ClientLib/KeySetCache.cpp +++ b/compiler/lib/ClientLib/KeySetCache.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/ClientLib/KeySetCache.h" #include "concretelang/Support/Error.h" diff --git a/compiler/lib/Conversion/ConcreteToConcreteCAPI/ConcreteToConcreteCAPI.cpp b/compiler/lib/Conversion/ConcreteToConcreteCAPI/ConcreteToConcreteCAPI.cpp index ac85bb7d2..1e163d541 100644 --- a/compiler/lib/Conversion/ConcreteToConcreteCAPI/ConcreteToConcreteCAPI.cpp +++ b/compiler/lib/Conversion/ConcreteToConcreteCAPI/ConcreteToConcreteCAPI.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir//IR/BuiltinTypes.h" #include "mlir/Dialect/MemRef/IR/MemRef.h" diff --git a/compiler/lib/Conversion/ConcreteUnparametrize/ConcreteUnparametrize.cpp b/compiler/lib/Conversion/ConcreteUnparametrize/ConcreteUnparametrize.cpp index 4c766b48d..cacc79b53 100644 --- a/compiler/lib/Conversion/ConcreteUnparametrize/ConcreteUnparametrize.cpp +++ b/compiler/lib/Conversion/ConcreteUnparametrize/ConcreteUnparametrize.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/Pass/Pass.h" #include "mlir/Transforms/DialectConversion.h" diff --git a/compiler/lib/Conversion/FHETensorOpsToLinalg/TensorOpsToLinalg.cpp b/compiler/lib/Conversion/FHETensorOpsToLinalg/TensorOpsToLinalg.cpp index 68628b322..84ced02ad 100644 --- a/compiler/lib/Conversion/FHETensorOpsToLinalg/TensorOpsToLinalg.cpp +++ b/compiler/lib/Conversion/FHETensorOpsToLinalg/TensorOpsToLinalg.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/Dialect/Linalg/IR/LinalgOps.h" #include "mlir/Dialect/MemRef/IR/MemRef.h" diff --git a/compiler/lib/Conversion/FHEToTFHE/FHEToTFHE.cpp b/compiler/lib/Conversion/FHEToTFHE/FHEToTFHE.cpp index 2d33bfcbc..fb80652b5 100644 --- a/compiler/lib/Conversion/FHEToTFHE/FHEToTFHE.cpp +++ b/compiler/lib/Conversion/FHEToTFHE/FHEToTFHE.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Conversion/MLIRLowerableDialectsToLLVM/MLIRLowerableDialectsToLLVM.cpp b/compiler/lib/Conversion/MLIRLowerableDialectsToLLVM/MLIRLowerableDialectsToLLVM.cpp index 5325eadd2..7ab51b460 100644 --- a/compiler/lib/Conversion/MLIRLowerableDialectsToLLVM/MLIRLowerableDialectsToLLVM.cpp +++ b/compiler/lib/Conversion/MLIRLowerableDialectsToLLVM/MLIRLowerableDialectsToLLVM.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Conversion/TFHEGlobalParametrization/TFHEGlobalParametrization.cpp b/compiler/lib/Conversion/TFHEGlobalParametrization/TFHEGlobalParametrization.cpp index 72032d037..334be6fe8 100644 --- a/compiler/lib/Conversion/TFHEGlobalParametrization/TFHEGlobalParametrization.cpp +++ b/compiler/lib/Conversion/TFHEGlobalParametrization/TFHEGlobalParametrization.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/Pass/Pass.h" #include "mlir/Transforms/DialectConversion.h" diff --git a/compiler/lib/Conversion/TFHEToConcrete/TFHEToConcrete.cpp b/compiler/lib/Conversion/TFHEToConcrete/TFHEToConcrete.cpp index a4ed978ef..221d0de27 100644 --- a/compiler/lib/Conversion/TFHEToConcrete/TFHEToConcrete.cpp +++ b/compiler/lib/Conversion/TFHEToConcrete/TFHEToConcrete.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Dialect/Concrete/IR/ConcreteDialect.cpp b/compiler/lib/Dialect/Concrete/IR/ConcreteDialect.cpp index b189925ac..b2297993c 100644 --- a/compiler/lib/Dialect/Concrete/IR/ConcreteDialect.cpp +++ b/compiler/lib/Dialect/Concrete/IR/ConcreteDialect.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/Dialect/Concrete/IR/ConcreteDialect.h" #include "concretelang/Dialect/Concrete/IR/ConcreteOps.h" diff --git a/compiler/lib/Dialect/Concrete/IR/ConcreteOps.cpp b/compiler/lib/Dialect/Concrete/IR/ConcreteOps.cpp index 272521dd0..19bd2695f 100644 --- a/compiler/lib/Dialect/Concrete/IR/ConcreteOps.cpp +++ b/compiler/lib/Dialect/Concrete/IR/ConcreteOps.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/Dialect/Concrete/IR/ConcreteOps.h" #include "concretelang/Dialect/Concrete/IR/ConcreteTypes.h" diff --git a/compiler/lib/Dialect/FHE/Analysis/MANP.cpp b/compiler/lib/Dialect/FHE/Analysis/MANP.cpp index fe40d122a..f4a96e340 100644 --- a/compiler/lib/Dialect/FHE/Analysis/MANP.cpp +++ b/compiler/lib/Dialect/FHE/Analysis/MANP.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/lib/Dialect/FHE/IR/FHEDialect.cpp b/compiler/lib/Dialect/FHE/IR/FHEDialect.cpp index 691e78483..dc5681952 100644 --- a/compiler/lib/Dialect/FHE/IR/FHEDialect.cpp +++ b/compiler/lib/Dialect/FHE/IR/FHEDialect.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/Dialect/FHE/IR/FHEDialect.h" #include "concretelang/Dialect/FHE/IR/FHEOps.h" diff --git a/compiler/lib/Dialect/FHE/IR/FHEOps.cpp b/compiler/lib/Dialect/FHE/IR/FHEOps.cpp index 41a6e6375..21f3a698e 100644 --- a/compiler/lib/Dialect/FHE/IR/FHEOps.cpp +++ b/compiler/lib/Dialect/FHE/IR/FHEOps.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/IR/Region.h" #include "mlir/IR/TypeUtilities.h" diff --git a/compiler/lib/Dialect/FHELinalg/IR/FHELinalgDialect.cpp b/compiler/lib/Dialect/FHELinalg/IR/FHELinalgDialect.cpp index 60a1260b7..c0f155c93 100644 --- a/compiler/lib/Dialect/FHELinalg/IR/FHELinalgDialect.cpp +++ b/compiler/lib/Dialect/FHELinalg/IR/FHELinalgDialect.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/Dialect/FHELinalg/IR/FHELinalgDialect.h" #include "concretelang/Dialect/FHELinalg/IR/FHELinalgOps.h" diff --git a/compiler/lib/Dialect/FHELinalg/IR/FHELinalgOps.cpp b/compiler/lib/Dialect/FHELinalg/IR/FHELinalgOps.cpp index c619f35f3..d9a9eb521 100644 --- a/compiler/lib/Dialect/FHELinalg/IR/FHELinalgOps.cpp +++ b/compiler/lib/Dialect/FHELinalg/IR/FHELinalgOps.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/IR/TypeUtilities.h" diff --git a/compiler/lib/Dialect/FHELinalg/Transforms/Tiling.cpp b/compiler/lib/Dialect/FHELinalg/Transforms/Tiling.cpp index ede01cf95..eadfb1fca 100644 --- a/compiler/lib/Dialect/FHELinalg/Transforms/Tiling.cpp +++ b/compiler/lib/Dialect/FHELinalg/Transforms/Tiling.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/lib/Dialect/RT/Analysis/BufferizeDataflowTaskOps.cpp b/compiler/lib/Dialect/RT/Analysis/BufferizeDataflowTaskOps.cpp index d33b7da7f..d86a9bf01 100644 --- a/compiler/lib/Dialect/RT/Analysis/BufferizeDataflowTaskOps.cpp +++ b/compiler/lib/Dialect/RT/Analysis/BufferizeDataflowTaskOps.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Dialect/RT/Analysis/BuildDataflowTaskGraph.cpp b/compiler/lib/Dialect/RT/Analysis/BuildDataflowTaskGraph.cpp index 51de9e77d..4e59569be 100644 --- a/compiler/lib/Dialect/RT/Analysis/BuildDataflowTaskGraph.cpp +++ b/compiler/lib/Dialect/RT/Analysis/BuildDataflowTaskGraph.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Dialect/RT/Analysis/LowerDataflowTasksToRT.cpp b/compiler/lib/Dialect/RT/Analysis/LowerDataflowTasksToRT.cpp index 2730e4338..a9b80e81f 100644 --- a/compiler/lib/Dialect/RT/Analysis/LowerDataflowTasksToRT.cpp +++ b/compiler/lib/Dialect/RT/Analysis/LowerDataflowTasksToRT.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Dialect/RT/Analysis/LowerRTToLLVMDFRCallsConversionPatterns.cpp b/compiler/lib/Dialect/RT/Analysis/LowerRTToLLVMDFRCallsConversionPatterns.cpp index 93b6dc1d9..b6ed64ad3 100644 --- a/compiler/lib/Dialect/RT/Analysis/LowerRTToLLVMDFRCallsConversionPatterns.cpp +++ b/compiler/lib/Dialect/RT/Analysis/LowerRTToLLVMDFRCallsConversionPatterns.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Dialect/RT/IR/RTDialect.cpp b/compiler/lib/Dialect/RT/IR/RTDialect.cpp index bfe21b71f..14358669a 100644 --- a/compiler/lib/Dialect/RT/IR/RTDialect.cpp +++ b/compiler/lib/Dialect/RT/IR/RTDialect.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/Dialect/LLVMIR/LLVMDialect.h" #include "mlir/Dialect/MemRef/IR/MemRef.h" diff --git a/compiler/lib/Dialect/RT/IR/RTOps.cpp b/compiler/lib/Dialect/RT/IR/RTOps.cpp index 0d6d87e02..c444b2eac 100644 --- a/compiler/lib/Dialect/RT/IR/RTOps.cpp +++ b/compiler/lib/Dialect/RT/IR/RTOps.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/IR/Attributes.h" #include "mlir/IR/Builders.h" diff --git a/compiler/lib/Dialect/TFHE/IR/TFHEDialect.cpp b/compiler/lib/Dialect/TFHE/IR/TFHEDialect.cpp index b1a9a4152..875baa909 100644 --- a/compiler/lib/Dialect/TFHE/IR/TFHEDialect.cpp +++ b/compiler/lib/Dialect/TFHE/IR/TFHEDialect.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/Dialect/TFHE/IR/TFHEDialect.h" #include "concretelang/Dialect/TFHE/IR/TFHEOps.h" diff --git a/compiler/lib/Dialect/TFHE/IR/TFHEOps.cpp b/compiler/lib/Dialect/TFHE/IR/TFHEOps.cpp index 4af19d959..87f69da31 100644 --- a/compiler/lib/Dialect/TFHE/IR/TFHEOps.cpp +++ b/compiler/lib/Dialect/TFHE/IR/TFHEOps.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "mlir/IR/Region.h" diff --git a/compiler/lib/Runtime/DFRuntime.cpp b/compiler/lib/Runtime/DFRuntime.cpp index 963e22647..a79abe09f 100644 --- a/compiler/lib/Runtime/DFRuntime.cpp +++ b/compiler/lib/Runtime/DFRuntime.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. /** This file implements the dataflow runtime. It encapsulates all of diff --git a/compiler/lib/Runtime/context.cpp b/compiler/lib/Runtime/context.cpp index fefa3d4f5..091314146 100644 --- a/compiler/lib/Runtime/context.cpp +++ b/compiler/lib/Runtime/context.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/lib/Support/CompilerEngine.cpp b/compiler/lib/Support/CompilerEngine.cpp index 70ba671a8..69bfbbad3 100644 --- a/compiler/lib/Support/CompilerEngine.cpp +++ b/compiler/lib/Support/CompilerEngine.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/lib/Support/Jit.cpp b/compiler/lib/Support/Jit.cpp index cc53a47db..c79a38eeb 100644 --- a/compiler/lib/Support/Jit.cpp +++ b/compiler/lib/Support/Jit.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "llvm/Support/Error.h" #include diff --git a/compiler/lib/Support/JitCompilerEngine.cpp b/compiler/lib/Support/JitCompilerEngine.cpp index 294fbd62a..a73dc465b 100644 --- a/compiler/lib/Support/JitCompilerEngine.cpp +++ b/compiler/lib/Support/JitCompilerEngine.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "llvm/Support/Error.h" #include diff --git a/compiler/lib/Support/LLVMEmitFile.cpp b/compiler/lib/Support/LLVMEmitFile.cpp index df8c14fce..ca0dfcaae 100644 --- a/compiler/lib/Support/LLVMEmitFile.cpp +++ b/compiler/lib/Support/LLVMEmitFile.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/lib/Support/LambdaArgument.cpp b/compiler/lib/Support/LambdaArgument.cpp index 2967810c7..f7cfc5922 100644 --- a/compiler/lib/Support/LambdaArgument.cpp +++ b/compiler/lib/Support/LambdaArgument.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Support/Pipeline.cpp b/compiler/lib/Support/Pipeline.cpp index dad3d9bc1..e1134f78c 100644 --- a/compiler/lib/Support/Pipeline.cpp +++ b/compiler/lib/Support/Pipeline.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Support/V0ClientParameters.cpp b/compiler/lib/Support/V0ClientParameters.cpp index 46e2b0621..a313aa12c 100644 --- a/compiler/lib/Support/V0ClientParameters.cpp +++ b/compiler/lib/Support/V0ClientParameters.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/lib/Support/V0Curves.cpp b/compiler/lib/Support/V0Curves.cpp index d951e9424..7315edc1f 100644 --- a/compiler/lib/Support/V0Curves.cpp +++ b/compiler/lib/Support/V0Curves.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/Support/V0Parameters.cpp b/compiler/lib/Support/V0Parameters.cpp index 86d083969..138620e01 100644 --- a/compiler/lib/Support/V0Parameters.cpp +++ b/compiler/lib/Support/V0Parameters.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. /// DO NOT MANUALLY EDIT THIS FILE. /// This file was generated thanks the "parameters optimizer". diff --git a/compiler/lib/Support/logging.cpp b/compiler/lib/Support/logging.cpp index 4483fef22..c675c4260 100644 --- a/compiler/lib/Support/logging.cpp +++ b/compiler/lib/Support/logging.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/TestLib/Arguments.cpp b/compiler/lib/TestLib/Arguments.cpp index 6d7625d5f..bf796d0ae 100644 --- a/compiler/lib/TestLib/Arguments.cpp +++ b/compiler/lib/TestLib/Arguments.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include "concretelang/TestLib/Arguments.h" #include "concretelang/Support/CompilerEngine.h" diff --git a/compiler/lib/TestLib/DynamicLambda.cpp b/compiler/lib/TestLib/DynamicLambda.cpp index 93754d942..b91cea706 100644 --- a/compiler/lib/TestLib/DynamicLambda.cpp +++ b/compiler/lib/TestLib/DynamicLambda.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include diff --git a/compiler/lib/TestLib/DynamicModule.cpp b/compiler/lib/TestLib/DynamicModule.cpp index d319a4ea7..37e4edc8e 100644 --- a/compiler/lib/TestLib/DynamicModule.cpp +++ b/compiler/lib/TestLib/DynamicModule.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/setup.py b/compiler/setup.py index f26fa1fa4..4410aee85 100644 --- a/compiler/setup.py +++ b/compiler/setup.py @@ -55,7 +55,7 @@ setuptools.setup( keywords="homomorphic encryption compiler", long_description=read("README.md"), long_description_content_type="text/markdown", - url="https://github.com/zama-ai/homomorphizer", + url="https://github.com/zama-ai/concrete-compiler-internal", packages=setuptools.find_namespace_packages( where=build_dir() + "tools/concretelang/python_packages/concretelang_core", include=["concrete", "concrete.*"], diff --git a/compiler/src/main.cpp b/compiler/src/main.cpp index 4c7f68523..ab435f519 100644 --- a/compiler/src/main.cpp +++ b/compiler/src/main.cpp @@ -1,7 +1,7 @@ // Part of the Concrete Compiler Project, under the BSD3 License with Zama // Exceptions. See -// https://github.com/zama-ai/homomorphizer/blob/master/LICENSE.txt for license -// information. +// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt +// for license information. #include #include diff --git a/compiler/tests/Dialect/TFHE/TFHE/Output/ops.mlir.script b/compiler/tests/Dialect/TFHE/TFHE/Output/ops.mlir.script index 6ca4c5352..a4f13266a 100644 --- a/compiler/tests/Dialect/TFHE/TFHE/Output/ops.mlir.script +++ b/compiler/tests/Dialect/TFHE/TFHE/Output/ops.mlir.script @@ -1 +1 @@ -set -o pipefail;{ : 'RUN: at line 1'; zamacompiler /home/yundsi/code/homomorphizer/compiler/tests/Dialect/MidLFHE/ops.mlir 2>&1| FileCheck /home/yundsi/code/homomorphizer/compiler/tests/Dialect/MidLFHE/ops.mlir; } +set -o pipefail;{ : 'RUN: at line 1'; zamacompiler /home/yundsi/code/concrete-compiler-internal/compiler/tests/Dialect/MidLFHE/ops.mlir 2>&1| FileCheck /home/yundsi/code/concrete-compiler-internal/compiler/tests/Dialect/MidLFHE/ops.mlir; } diff --git a/docs/conf.py b/docs/conf.py index ae04f6c99..995d5fa2d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,7 +74,7 @@ html_static_path = ['_static'] html_css_files = ['css/custom.css'] html_favicon = '_static/favicon.ico' html_theme_options = { - "github_url": "https://github.com/zama-ai/homomorphizer", + "github_url": "https://github.com/zama-ai/concrete-compiler-internal", "twitter_url": "https://twitter.com/zama_fhe", "icon_links": [{ "name": "Discourse", diff --git a/docs/user/install.md b/docs/user/install.md index 04bf66d2c..897079e20 100644 --- a/docs/user/install.md +++ b/docs/user/install.md @@ -2,11 +2,11 @@ ## Docker -A docker image is provided in Github Releases at [https://github.com/zama-ai/homomorphizer/releases](https://github.com/zama-ai/homomorphizer/releases) +A docker image is provided in Github Releases at [https://github.com/zama-ai/concrete-compiler-internal/releases](https://github.com/zama-ai/concrete-compiler-internal/releases) ## Python bindings -A python library is provided in Github Releases at [https://github.com/zama-ai/homomorphizer/releases](https://github.com/zama-ai/homomorphizer/releases) +A python library is provided in Github Releases at [https://github.com/zama-ai/concrete-compiler-internal/releases](https://github.com/zama-ai/concrete-compiler-internal/releases) On pypi, the library should soon be available at [https://pypi.org/user/zama/](https://pypi.org/user/zama/). diff --git a/docs/user/troubleshooting.md b/docs/user/troubleshooting.md index ce8cb481d..29084becb 100644 --- a/docs/user/troubleshooting.md +++ b/docs/user/troubleshooting.md @@ -3,6 +3,6 @@ % Common ways to identify a problem, making sure it is not a mis-use, and if the % problem is confirmed what info/artifacts are needed by Zama's team to help the user -If you have issues, look at [https://github.com/zama-ai/homomorphizer/issues](https://github.com/zama-ai/homomorphizer/issues) if there is any similar existing issue. +If you have issues, look at [https://github.com/zama-ai/concrete-compiler-internal/issues](https://github.com/zama-ai/concrete-compiler-internal/issues) if there is any similar existing issue. If not, please create a new issue. \ No newline at end of file