fxpOptimizationOptions class
Specify options for data type optimization
Description
The fxpOptimizationOptions
object enables you to specify options
and constraints to use during the data type optimization process.
Construction
creates a
opt
= fxpOptimizationOptions()fxpOptimizationOptions
object with default values.
creates an opt
= fxpOptimizationOptions(Name,Value
) fxpOptimizationOptions
object with property values
specified by one or more Name,Value
pair arguments.
Name
must appear inside single quotes (''
).
You can specify several name-value pair arguments in any order as
Name1,Value1,...,NameN,ValueN
.
Properties
MaxIterations
— Maximum number of iterations to perform
50 (default) | scalar integer
Maximum number of iterations to perform, specified as a scalar integer. The optimization process iterates through different solutions until it finds an ideal solution, reaches the maximum number of iterations, or reaches another stopping criteria.
Example: opt.MaxIterations = 75;
Data Types: double
MaxTime
— Maximum amount of time for the optimization to run (in seconds)
600 (default) | scalar
Maximum amount of time for the optimization to run, specified in seconds as a scalar number. The optimization runs until it reaches the time specified, an ideal solution, or another stopping criteria.
Example: opt.MaxTime = 1000;
Data Types: double
Patience
— Maximum number of iterations where no new best solution is found
10 (default) | scalar integer
Maximum number of iterations where no new best solution is found, specified as a scalar integer. The optimization continues as long as the algorithm continues to find new best solutions.
Example: opt.Patience = 15;
Data Types: double
Verbosity
— Level of information displayed at the command line during the optimization
'High'
(default) | 'Moderate'
| 'Silent'
The level of information displayed at the command line during the
optimization process, specified as either 'High'
,
'Moderate'
, or 'Silent'
.
'Silent'
- Nothing is displayed at the command line until the optimization process is finished'Moderate'
- Information is displayed at each major step of the optimization process, including when the process is in the preprocessing, modeling, and optimization phases.'High'
- Information is displayed at the command line at each iteration of the optimization process, including whether a new best solution was found, and the cost of the solution.
Example: opt.Verbosity = 'Moderate';
Data Types: char
| string
AllowableWordLengths
— Word lengths that can be used in your optimized system under design
[2:128]
(default) | scalar integer | vector of integers
Specify the word lengths that can be used in your optimized system under
design. Use this property to target the neighborhood search of the
optimization process. The final result of the optimization uses word lengths
in the intersection of the AllowableWordLengths
and
word lengths compatible with hardware constraints specified in the
Hardware Implementation pane of your model.
Example: opt.AllowableWordLengths =
[8:11,16,32];
Data Types: double
ObjectiveFunction
— Objective function to use during optimization search
'BitWidthSum'
(default) | 'OperatorCount'
Objective function to use during optimization search, specified as one of these values:
'BitWidthSum'
— Minimize total bit width sum.'OperatorCount'
— Minimize estimated count of operators in generated C code.This option may result in a lower program memory size for C code generated from Simulink® models. The
'OperatorCount'
objective function is not suitable for FPGA or ASIC targets.Note
To use
'OperatorCount'
as the objective function during optimization, the model must be ready for code generation. For more information about determining code generation readiness, see Check Model and Configuration for Code Generation (Embedded Coder).
Data Types: char
UseParallel
— Whether to run iterations in parallel
false
(default) | true
Whether to run iterations of the optimization in parallel, specified as a
logical. Running the iterations in parallel requires a Parallel Computing Toolbox™ license. If you do not have a Parallel Computing Toolbox license, or if you specify false
, the
iterations run in serial.
Data Types: logical
AdvancedOptions
— Additional options for optimization
object
Additional advanced options for optimization.
AdvancedOptions
is an object containing additional
properties that can affect the optimization.
Property | Description |
---|---|
PerformNeighborhoodSearch |
|
EnforceLooseCoupling | Some blocks have a parameter that forces inputs to share a data type, or forces the output to share the same data type as the input.
|
UseDerivedRangeAnalysis |
Depending on the model configuration, derived range analysis may take longer than simulation of the model. |
SimulationScenarios | Define additional simulation scenarios to consider
during optimization using a Simulink.SimulationInput object. For an
example, see Optimize Data Types Using Multiple Simulation Scenarios. |
SafetyMargin | Enter a safety margin, specified as a positive scalar value indicating the percentage increase in the bounds of the collected range. The safety margin is applied to the union of all collected ranges, including simulation ranges, derived ranges, and design ranges. |
DataTypeOverride | Override data types specified in the model when simulating during the range collection phase of optimization.
|
HandleUnsupported | Some blocks are not supported for fixed-point conversion. For more information, see Blocks That Do Not Support Fixed-Point Data Types.
|
PerformSlopeBiasCancellation |
|
InstrumentationContext | [model '/Subsystem'] – Restrict
instrumentation for minimum, maximum, and overflow
logging for the range collection step of optimization to
a subsystem. The subsystem must be under the top-level
model and contain the system under design. |
Methods
addSpecification | Specify known data types in a system |
addTolerance | Specify numeric tolerance for optimized system |
showSpecifications | Show specifications for a system |
showTolerances | Show tolerances specified for a system |
Copy Semantics
Handle. To learn how handle classes affect copy operations, see Copying Objects.
Examples
Create an fxpOptimizationOptions
Object
Create an fxpOptimizationObject
with default property values.
options = fxpOptimizationOptions();
Edit the properties after creation using dot syntax.
options.Patience = 15; options.AllowableWordLengths = [8,16,32]; options.AdvancedOptions.UseDerivedRangeAnalysis = true
options = fxpOptimizationOptions with properties: MaxIterations: 50 MaxTime: 600 Patience: 15 Verbosity: High AllowableWordLengths: [8 16 32] ObjectiveFunction: BitWidthSum UseParallel: 0 Advanced Options AdvancedOptions: [1x1 DataTypeOptimization.AdvancedFxpOptimizationOptions]
Create an fxpOptimizationOptions
Object With Non-Default Settings
Use property name-value pairs to set properties at object creation.
options = fxpOptimizationOptions('Patience',15,'AllowableWordLengths',[8,16,32])
options = fxpOptimizationOptions with properties: MaxIterations: 50 MaxTime: 600 Patience: 15 Verbosity: High AllowableWordLengths: [8 16 32] ObjectiveFunction: BitWidthSum UseParallel: 0 Advanced Options AdvancedOptions: [1x1 DataTypeOptimization.AdvancedFxpOptimizationOptions]
Specify advanced options.
options.AdvancedOptions.UseDerivedRangeAnalysis = 1
options = fxpOptimizationOptions with properties: MaxIterations: 50 MaxTime: 600 Patience: 15 Verbosity: High AllowableWordLengths: [8 16 32] ObjectiveFunction: BitWidthSum UseParallel: 0 Advanced Options AdvancedOptions: [1x1 DataTypeOptimization.AdvancedFxpOptimizationOptions]
Import an fxpOptimizationOptions
Object into Fixed-Point Tool
You can import an fxpOptimizationOptions
object into the Fixed-Point Tool to perform data type optimization in the app. By importing an fxpOptimizationOptions
object rather than specifying settings manually in the app, you can easily save and restore your settings.
Open the model.
model = 'ex_controllerHarness';
open_system(model);
To specify options for the optimization, such as the allowable word length and number of iterations, use the fxpOptimizationOptions
object.
options = fxpOptimizationOptions('AllowableWordLengths',[2:32],... 'MaxIterations',3e2,... 'Patience',50);
Open the Fixed-Point Tool with the Controller
subsystem selected.
fxptdlg('ex_controllerHarness/Controller')
In the Fixed-Point Tool, select New > Optimized Fixed-Point Conversion to start the data type optimization workflow.
In the Setup pane, under Advanced Options, select the optimization options object to import from the dropdown menu. Click Import.
Expand the Settings menu in the toolstrip to confirm that the optimization options were applied.
Version History
Introduced in R2018aR2021b: Restrict instrumentation to a subsystem
You can now restrict instrumentation to a subsystem by using the
InstrumentationContext
property of the
fxpOptimizationOptions
object to specify the subsystem to use
for instrumentation and range collection.
R2021b: Warn about unsupported constructs
You can now choose to display a warning message when fxpopt
encounters blocks that are not supported for data type conversion, in addition to
the existing options to isolate or error. To warn for unsupported constructs, set
the HandleUnsupported
property of the
fxpOptimizationOptions
object to
'Warn'
.
R2021a: Override data types with scaled doubles
You can now override data types in a model with scaled doubles.
See Also
Classes
Functions
Abrir ejemplo
Tiene una versión modificada de este ejemplo. ¿Desea abrir este ejemplo con sus modificaciones?
Comando de MATLAB
Ha hecho clic en un enlace que corresponde a este comando de MATLAB:
Ejecute el comando introduciéndolo en la ventana de comandos de MATLAB. Los navegadores web no admiten comandos de MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)