In OpenMP when using omp sections, will the threads be distributed to the blocks inside the sections, or will each thread be assigned to each sections?
If you want really start different threads in different sections, the nowait clause tells compiler that threads do not need to wait to enter a section.