Visible to Intel only — GUID: GUID-7FDEFCA0-BD77-4E88-8ED2-C1482472B1BD
Visible to Intel only — GUID: GUID-7FDEFCA0-BD77-4E88-8ED2-C1482472B1BD
loop-call-count-limit
Set the maximum number of instances to analyze for all marked loops.
GUI Equivalent
Project Properties > Analysis Target > [Analysis Type] > Advanced > Loop Call Count Limit
Syntax
--loop-call-count-limit=<integer> |
Arguments
Argument |
Description |
---|---|
0 |
Analyze all instances of all marked loops. |
<integer> |
Analyze up to n number of instances for all marked loops. |
Default
0 (analyze all instances of all marked loops)
Usage
Assumes similar runtime properties, such as the same memory access patterns, over different call instances. If this is not true, using this option may produce skewed results.
A smaller, non-zero value can minimize collection overhead.
Example
Run a Memory Access Patterns analysis. Limit analysis to the first ten invocations of marked loops.
advisor --collect=map --loop-call-count-limit=10 --project-dir=./advi_results -- ./myApplication