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!
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!