07-13-2022 03:47 PM
I have a VI that has a For Loop that I have parallelized to run quicker. The way I have this set up has been running successfully for a couple of months and I haven't made changes to it. In the past week or so when it gets to this For Loop it never enters it, it just freezes and hangs the whole program. I have attached a picture of the VI, any help would be great.
Thanks
07-13-2022 04:12 PM - edited 07-13-2022 04:14 PM
Execution highlighting is not supported for parallel FOR loops and it will just be skipped without highlighting. (You would need to enable debugging for the loop, which forces serial execution).
We need to assume that the contents of the FOR loop can actually run in parallel. You seem to be running Python nodes, so start reading here . What does your code actually do?