Executable with arguments inside a parfor loop with system()
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello all,
I am attempting to run an executable file within a parfor loop to perform a number of simulations in parallel. My first step is to set up a structure of the different conditions for each simulation. Then, I run the parfor loop for the length of this structure and run the system command with arguments in the loop. This works in a regular for loop, but stops after the first completed iteration with a parfor loop. Any suggestions?
Thanks in advance,
Jayanth
0 Kommentare
Antworten (1)
Hitesh Kumar Dasika
am 10 Apr. 2019
From the provided information, there is a possibility that the code that you are trying to run has some dependencies and those dependencies might not be accessible from the parallel workers and are accessible in the normal for loop execution because they are in the same directory. Please take a look at the below attached documentation link that talks about sharing code and data across workers.
If this is not the issue that you are facing, please elaborate on what kind of errors that you are encountering and also specific details about your workflow
0 Kommentare
Siehe auch
Kategorien
Mehr zu Parallel for-Loops (parfor) finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!