Executable with arguments inside a parfor loop with system()
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Hitesh Kumar Dasika
2019 年 4 月 10 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Parallel for-Loops (parfor) についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!