If you want loops to run in parallel, you must ensure that there is no wired data dependency between them. They will start at virtually the same time and each loop will run at its own rate.
If they are all in he same while loop, the while loop will only cycle again once ALL FOR loops have finished, the faster loops that finish earlier will have a longer pause.
If all loops should run continuously, each should be in its own while loop. In LabVIEW 7.1, use a couple of independent
timed loops.
If this does not answer your question, please provide more specific details.