You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I wrote a simple parallelizable circuit (see pseudocodes below) and I hope that MOTION actually executes these gates in parallel. Hence, my question is how I can confirm if MOTION is executing them sequentially or in parallel? If it is default behavior to execute gates sequentially, is there any setting I should configure to let MOTION run them in parallel?
int[] a;
int[] b;
int[] c;
for(i=0; i<32; i++){
c[i] = a[i] * b[i]; //parallel mul op
}
I am still an ameturer with MOTION, so any helps and clarifications are great appreciated!
The text was updated successfully, but these errors were encountered:
MOTION will by default perform these gates in parallel, as they don't depend on each other. Concretely, MOTION executes every gate in its own boost::Fiber (boost docs), which are lightweight user-space threads. Once a gate has finished its execution, including any local computation or communication, it notifies its children. Once all inputs of a gate are available, the fiber responsible for executing it is automatically scheduled, and the gate is evaluated.
On a high-level, you can think of the circuit as graph, where we spawn a thread for each gate. The execution of a gate waits until its inputs are ready and then continues. This way, independent operations at the same depth of the circuit are automatically evaluated in parallel.
However, this has some drawbacks. There is some overhead associated with this asynchronous mode of execution. In your example, you could use the Simdify operation to transform an array of secret shared values into a SIMD vector of these values and then perform the multiplication on these SIMDified values. This generally results in reduced communication and better performance.
Hi, I wrote a simple parallelizable circuit (see pseudocodes below) and I hope that MOTION actually executes these gates in parallel. Hence, my question is how I can confirm if MOTION is executing them sequentially or in parallel? If it is default behavior to execute gates sequentially, is there any setting I should configure to let MOTION run them in parallel?
I am still an ameturer with MOTION, so any helps and clarifications are great appreciated!
The text was updated successfully, but these errors were encountered: