Reduce Build Time for Referenced Models by Using Parallel Builds
For models that contain large model reference hierarchies, you can reduce code generation and compilation time by building the referenced models in parallel. With Parallel Computing Toolbox™ software, you can distribute the code generation and compilation for referenced models across a parallel pool of MATLAB® workers. If you also have MATLAB Parallel Server™ software, you can distribute the code generation and compilation across remote workers in your MATLAB Parallel Server configuration.
Build Referenced Models in Parallel
To build referenced models in parallel:
Open the Configuration Parameters dialog box for the top model of the model hierarchy.
Select the Enable parallel model reference builds check box.
For each MATLAB worker, you can set up a MATLAB environment that is consistent with the MATLAB environment of the client. From the MATLAB worker initialization for builds drop-down list, select one of these values:
None
–– Simulink® does not initialize workers.Copy base workspace
–– Simulink attempts to copy the base workspace to each MATLAB worker.Load top model
–– Simulink loads the top model onto each MATLAB worker.
Build your model from the command line or the Simulink Editor Code perspective:
Command line –– Use, for example,
slbuild
. The build process displays build log messages in the Command Window.Simulink Editor Code perspective –– Click the Build button. The build process displays build log messages in the Diagnostic Viewer.
If the Parallel Computing Toolbox parallel preference Automatically create a parallel pool is selected, a parallel pool of MATLAB workers is automatically started. For more information, see Specify Your Parallel Preferences (Parallel Computing Toolbox).
If a parallel pool of MATLAB workers is not running when you build your model, MATLAB automatically opens a parallel pool of workers by using the default cluster profile. To change the default behavior of the worker cluster, you can modify properties of the cluster profile. If you have not touched your parallel preferences, the default profile is
local
. Control parallel behavior with the parallel preferences, including scaling up to a cluster, automatic pool creation, and preferred number of workers. For more information, see Discover Clusters and Use Cluster Profiles (Parallel Computing Toolbox).For more general information about parallel computing, see Run MATLAB Functions with Automatic Parallel Support (Parallel Computing Toolbox).
Monitor Parallel Building of Referenced Models
Through the Build Status window, you can:
View the overall build progress for a model hierarchy.
View the build status of individual models in the model hierarchy.
Cancel the parallel build process.
The Build Status window supports only parallel building of model hierarchies. Do not use the Build Status window for serial builds.
To open the Build Status window, use one of these line commands:
coder.buildstatus.open
('model')slbuild('
model
', ... 'OpenBuildStatusAutomatically',true)
slbuild('
model
','StandaloneCoderTarget', ... 'OpenBuildStatusAutomatically',true)
This example shows how you can monitor the build process for a model hierarchy. In the hierarchy, ParallelBuildA1
references ParallelBuildB1
, ParallelBuildB2
, and ParallelBuildB3
.
Open the top model.
open_system('ParallelBuildA1');
View the model dependencies with the Dependency Analyzer. On the Modeling tab, in Design section, click the down arrow to expand the Design gallery. Under Dependencies, click Dependency Analyzer.
Start parallel building of the model hierarchy and open the Build Status window.
slbuild('ParallelBuildA1','OpenBuildStatusAutomatically',true)
### Searching for referenced models in model 'ParallelBuildA1'. ### Found 3 model reference targets to update. Starting parallel pool (parpool) using the 'Processes' profile ... 11-Jul-2024 13:37:06: Job Running. Waiting for parallel pool workers to connect ... Connected to parallel pool with 4 workers. ### Initializing workers for parallel model reference build. ### Parallel worker initialization complete. ### Starting parallel model reference code generation build. ### Successfully updated the model reference code generation target for: ParallelBuildB1 ### Successfully updated the model reference code generation target for: ParallelBuildB2 ### Successfully updated the model reference code generation target for: ParallelBuildB3 ### Starting build procedure for: ParallelBuildA1 ### Successful completion of build procedure for: ParallelBuildA1 Build Summary Model reference code generation targets: Model Build Reason Status Build Duration ======================================================================================================== ParallelBuildB1 Target (ParallelBuildB1.c) did not exist. Code generated and compiled. 0h 1m 0.39414s ParallelBuildB2 Target (ParallelBuildB2.c) did not exist. Code generated and compiled. 0h 1m 0.39286s ParallelBuildB3 Target (ParallelBuildB3.c) did not exist. Code generated and compiled. 0h 1m 0.3926s Top model targets: Model Build Reason Status Build Duration ================================================================================================================== ParallelBuildA1 Information cache folder or artifacts were missing. Code generated and compiled. 0h 1m 2.0132s 4 of 4 models built (0 models already up to date) Build duration: 0h 5m 1.9423s ### Cleaning up parallel workers.
The Build Status window displays the overall build progress and the build status for models as the code generator works through the model hierarchy.
The Status column can display these values:
Blocked
- The code generator cannot schedule the model build because the build is blocked by dependencies. For example, a child model build is not complete.Scheduled
- In parallel building, the code generator schedules a model build when the build is not blocked by dependencies. The status of the model build isScheduled
until a parallel pool worker becomes available.Building
- The model is being built on a worker.Completed
- When a model is built without errors, the status changes toCompleted
.Error
- If the model build fails, the status changes toError
.Up To Date
- Code generation is not required for the model because the current generated code is up to date.Canceling
- When you click the Cancel Build button, the build process changes the status of incomplete builds toCanceling
.Canceled
- The canceling operation is complete.
The Elapsed Time column shows the build times for models in the hierarchy. To reduce the total build time, analyse the build times for referenced models together with model dependency information. Then, consider, for example:
Restructuring the referenced model hierarchy.
Increasing the number of workers in the parallel pool.
See Also
slbuild
| coder.buildstatus.open
| coder.buildstatus.close