Error using parpool with threads in 2020a
24 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Francesc Massanes Basi
am 13 Jul. 2020
Kommentiert: Julie F.
am 11 Sep. 2020
I have compiled a code that uses parpool("threads"), in 2020a, my code works as expected when run inside of matlab. However, once the code is compiled, and executed with the latest 2020a runtime, it reports:
Unable to resolve the name parallel.ThreadPool.createPool.
Any ideas? This seems to be from a Java installation, right?
0 Kommentare
Akzeptierte Antwort
Raymond Norris
am 14 Jul. 2020
Hi Francesc. Support for threaded pools in deployed applications is a future enhancement. In the meantime, consider the following workaround
if isdeployed
p = parpool('local');
else
p = parpool('threads');
end
2 Kommentare
Julie F.
am 11 Sep. 2020
I also encountered this issue... I was hoping thread pools would be available in deployed apps so we could take advantage of the performance imrpovements.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Parallel Computing Fundamentals 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!