WIZ-level parallelism - page 3 We can comment here that the same is true for the simple functions just introduced to support naked WIZes. EG, to compute A = x*y, B = p/q, and C = u+v we have the same choices: x,y => mult-funct => A ; p,q => divide-funct => B ; u,v => adder-funct => C or: x,y => mult-funct ; p,q => divide-funct ; u,v => add-funct mult-funct => A ; divide-funct => B ; add-funct => C In the second case, since each of these functions run in separate WIZes and therefore run simultaneously, once the mult-function is done, so will the divide-funct and the add-funct, and therefore add no more time. Since ALL functions run like this, on their own WIZ and therefore in parallel to the sequence that called them, we have a massively parallel system.