mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
feat(Clientlib): separate client encryption and server computation
Resolve #200
This commit is contained in:
@@ -50,7 +50,7 @@ lambdaArgument invokeLambda(lambda l, executionArguments args) {
|
||||
}
|
||||
// Set the integer/tensor arguments
|
||||
std::vector<mlir::concretelang::LambdaArgument *> lambdaArgumentsRef;
|
||||
for (auto i = 0; i < args.size; i++) {
|
||||
for (auto i = 0u; i < args.size; i++) {
|
||||
lambdaArgumentsRef.push_back(args.data[i].ptr.get());
|
||||
}
|
||||
// Run lambda
|
||||
|
||||
Reference in New Issue
Block a user