buildInstrumentedMex matlab 2017a three times slower than 2016b
Ältere Kommentare anzeigen
I have 8 matlab scripts that use buildInstrumentedMex
%fixed_scen14_ds_11Q21_1.m
buildInstrumentedMex schurHybridFix -args {inpH_1,Type_1} -histogram -o schurHybridFix_1_mex
and I run these in a batch
myCluster = parcluster;
job1 = batch(myCluster,'fixed_scen14_ds_11Q21_1','CaptureDiary',true); % do not specify the .m of myScript.m
job2 = batch(myCluster,'fixed_scen14_ds_11Q21_2','CaptureDiary',true); % do not specify the .m of myScript.m
job3 = batch(myCluster,'fixed_scen14_ds_11Q21_3','CaptureDiary',true); % do not specify the .m of myScript.m
job4 = batch(myCluster,'fixed_scen14_ds_11Q21_4','CaptureDiary',true); % do not specify the .m of myScript.m
job5 = batch(myCluster,'fixed_scen14_ds_11Q21_5','CaptureDiary',true); % do not specify the .m of myScript.m
job6 = batch(myCluster,'fixed_scen14_ds_11Q21_6','CaptureDiary',true); % do not specify the .m of myScript.m
job7 = batch(myCluster,'fixed_scen14_ds_11Q21_7','CaptureDiary',true); % do not specify the .m of myScript.m
job8 = batch(myCluster,'fixed_scen14_ds_11Q21_8','CaptureDiary',true); % do not specify the .m of myScript.m
With matlab 2016b this takes 17802 seconds. With matlab 2017a this takes 59040 seconds or 3.3 times longer.
It runs on an Intel core i7 with 4 cores and 8 threads.
OS is Windows 10 in both cases.
What makes 2017a so slow?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Startup and Shutdown finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!