-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Description
Does ABY have SIMD or Multithreading support? If so, how can I evaluate multiple inependent multiplications like in this example more efficiently? Also, what's the API for AND gates instead of Multiplication gates?
si64 prod = sharedVec[0];
task = runtime.noDependencies();
for (u64 i = 1; i < sharedVec.size(); ++i)
task = eval.asyncMul(task, prod, sharedVec[i], prod);
task.get();
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels