Automatic parallelization: Difference between revisions

Content deleted Content added
No edit summary
m Added an "and".
Line 13:
</ref>
 
For example, consider a loop that on each iteration applies a hundred operations, and runs for a thousand iterations. This can be thought of as a grid of 100 columns by 1000 rows, a total of 100,000 operations. Cyclic multi-threading assigns each row to a different thread. Pipelined multi-threading assigns each column to a different thread.
 
==Automatic parallelization technique==