Run parallel batch job through cluster which require extra functions

16 Ansichten (letzte 30 Tage)
Vera Peng
Vera Peng am 13 Jul. 2018
Beantwortet: Kojiro Saito am 14 Jul. 2018
I have a Matlab script that needs two functions in the same folder. I can run it on my own computer under the same folder, but I don't know how this works in the parallel batch job. Say script name: script.m Two functions: function1.m function2.m

Antworten (1)

Kojiro Saito
Kojiro Saito am 14 Jul. 2018
Yes, it works in cluster, too.
By default, 'AutoAttachFiles' of batch function is true, so if your script.m requires external custom functions, batch will analyze file dependencies and send these files to the cluster automatically.
If this does not work, you can forcibly add files by using AttachedFiles property. The following command is an example of running script.m using 4 workers in parallel. (1 worker as a batch handler and 3 workers in parallel pool).
job1 = batch('script', 'AttachedFiles',{'function1.m','function2.m'}, 'Pool', 3);

Kategorien

Mehr zu MATLAB Parallel Server 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!

Translated by