02-18-2011 04:35 AM
Hai to all..
I Wanted to Know about For Loop Parallism in LabVIEW. This new feautres available in LabVIEW 2009 / later.
02-18-2011
06:51 AM
- last edited on
07-02-2024
01:49 PM
by
Content Cleaner
Dhanasekaran,
parallel loops can be used when the result in one iteration is independent of that of iterations before. Imagine you want to enlighten an image. You can do this for each point of the picture sequentially, but this would be done by a single thread on a single core of a single CPU. Instead you could utilize several threads, even cores and/or CPUs when using parallel loops. This way the points of the image are divided into subgroups and each subgroup is processed independent of the others. Results is a quicker overall-processing and a better utilization of your hardware.
See also here: