Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Sweeps are handled by one of three handlers,
autofreq
,range
andautoparam
.range
allows the user to manually specify values fora parameter in the agenda;
autofreq
allows cpu frequencies to beswept through, and
autoparam
allows other parameters to be sweptthrough.
autoparam
requires the parameter to haveallowed_values
specified,and the sweep specification must supply the plugin name and parameter
name as:
autofreq can be used with an empty value:
to sweep through all values of
frequency
by default, although ifplugin
is specified, other parameters within cpufreq can be sweptthrough:
For either of the above 'automatic' sweeps, a minimum and/or maximum can
be specified to limit the values generated in the sweep:
range
sweeps support two specification syntaxes: one for manualspecification of a list, and another for a range of values. These sweeps
only accept the plugin name as a parameter:
or
These both produce the same result. step is optional and defaults to 1.
Any sweep specified in a workload entry is equivalent to manually
specifying individual workload entries, each with one of the possible
values of the sweep.
Sweeps specified in sections will create the equivalent of a section
group, each section in that group with one of the sweep values. When the
group name is specified, the 'expanded' section entry will maintain that
group name, otherwise will generate its own.
If multiple sweeps are specified in one entry, then this will be
expanded to one entry for every combination of values of each sweep.