Parallel computing on Standalone Desktop App

4 Ansichten (letzte 30 Tage)
Pierpaolo
Pierpaolo am 29 Aug. 2024
Bearbeitet: Malay Agarwal am 30 Aug. 2024
Hi all,
I have developed a code in which I have used the parallel computing capabilities of Matlab. There is a parfor that helps me reducing computation time (I have many iterations). To share the app with some colleagues I have designed a simple GUI with the app designer and exported it as a standalone desktop app. While testing it, how can I be sure the parallel computing works on computers that don't have matlab on and on which the setup.exe of the app is run? I fear that when exported, the parfor becomes a simple for.
Any suggestion? Thanks!

Akzeptierte Antwort

Malay Agarwal
Malay Agarwal am 30 Aug. 2024
Bearbeitet: Malay Agarwal am 30 Aug. 2024
To deploy MATLAB applications that run in parallel, you need to make sure that the cluster profile of the cluster where the code runs is available to the application. You can export the cluster profile as follows:
  1. In the Home tab, in the Environment section, select Parallel > Create and Manage Clusters.
  2. In the Cluster Profile Manager dialog, select a profile, and in the Manage section, click Export.
After obtaining the cluster profile, it can be set by:
  • Including the path to the cluster profile in the MATLAB function that uses parfor.
  • Including the cluster profile as an additional file when packaging the MATLAB application into a standalone application.
  • Passing the cluster profile to the standalone application at run time.
In your case, the second option of packaging the cluster profile as an additional file makes the most sense.
Please refer to the following example for a step-by-step guide on how to do this: https://www.mathworks.com/help/compiler/deploy-parallel-matlab-function-standalone-app.html.
Hope this helps!

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB Parallel Server finden Sie in Help Center und File Exchange

Produkte


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by