Trying to read text file inside parfor loop versus passing it as a parameter
9 ビュー (過去 30 日間)
古いコメントを表示
I have a couple txt/csv files that contain upward to 5000 lines. Each line contains information that I intend to read in as input to a function inside parfor loop. Is it best if I read the text files as a matrix/struct/etc. and the parfor loop can access the information from said matrix/struct? Or is it better have the part that read files inside the parfor loop?
3 件のコメント
Mohammad Sami
2020 年 3 月 24 日
編集済み: Mohammad Sami
2020 年 3 月 24 日
I suggest just load it once before parfor loop. As long as each loop is not modifying the contents, it should be fine.
採用された回答
Rashed Mohammed
2020 年 5 月 19 日
Hi Giang Le,
Assuming that you are trying to call a function with its parameters read from a file parallelly. However, using IO functions inside parfor loop can be slow. Hence as suggested by Sami, read the data before hand using readmatrix and then pass the content as parameters to function parallelly using parfor.
Hope this helps!
0 件のコメント
その他の回答 (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!