1
edit
Changes
→How to parallelize your code using Chapel Cray
Iterations in a loop will be executed in parallel.
* '''forall''': When the first iteration starts the threads will be created on cores. When the number of iterations is bigger than the number of threads. It might not run in parallel.
* Sample Parallel Code using '''forall'''