Parallel looping is one of those things I wish was easier to use. Countless times I've stared at my python code weighing the cost of using the available primitives to optimise the loop. I just wish it was as simple as<p><pre><code> parallel_for x in range(10):
myFunc(x)
</code></pre>
But we can't have everything.