Intel® Advisor Help

show-loops

Enable showing loops in a report view.

GUI Equivalent

Pane Filters

Syntax

--show-loops

--no-show-loops

Default

--show-loops is enabled by default when using --report.

By default --report provides information about loops in the current application, while does not provide information about functions. You can change this behavior with --show-functions and/or --no-show-loops options.

Description

--show-loops option (default) enables showing loops in Intel® Advisor CLI reports. By default the option is switched on, which means that if you call --report, you will get a list of loops in the current application. To hide the loops, use --no-show-loops.

The option is similar to the Intel® Advisor GUI filter by loops.

Example

Generate a Survey report in text format. This example reports the list of both loops and functions in the current application.

$ advixe-cl --report survey --show-functions --project-dir ./advi --format text --report-output ./out/survey.txt

This command generates a similar Survey report with information about functions only. No information about loops inside.

$ advixe-cl --report survey --no-show-loops --show-functions --project-dir ./advi --format text --report-output ./out/survey.txt

This command generates a default Survey report with information about loops only. No information about functions inside, as be default showing functions is disabled.

$ advixe-cl --report survey --project-dir ./advi --format text --report-output ./out/survey.txt

This command generates an empty report, as you disable showing information about loops, while showing information about functions is switched off by default.

$ advixe-cl --report survey --no-show-loops --project-dir ./advi --format text --report-output ./out/survey.txt

See Also