Parfor in Parallel Computing

1 次查看(过去 30 天)
FARIS SYAHMI SAMIDI
Hi, i wish to use parfor in my code. However, i use run(function) to initialy execute which cant be use in parfor loop. Is there any other alternative to "run" command to work with parfor?

回答(1 个)

Edric Ellis
Edric Ellis 2021-4-21
The run function does not work with scripts containing parfor loops. Simply invoke the script directly by name. If the script is in a different directory, change directory there first. Perhaps something like this:
scriptName = '/some/path/to/myscript.m';
scriptDir = fileparts(scriptName);
cd(scriptDir);
myscript % just call directly.

类别

Help CenterFile Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by