Content deleted Content added
refreshed notability tag - too many references lead back to the publisher to be considered arguments for notability. |
|||
Line 16:
==Parallelization and Scalability==
The sieve compiler can split code within a sieve block into chunks either implicitly or explicitly though a 'splithere' statement. For instance, the following example shows parallelizaing a loop:
<source lang="cpp">
sieve
{
Line 25:
}
}
</source>
The compiler will implicitly add a splitpoint above the for loop construct body, as an entry point. Similarly one will be added after as an exit point.
|