Intel® Advisor Help
--show-functions |
--no-show-functions |
--show-functions is disabled 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.
--show-functions option enables showing functions in Intel® Advisor CLI reports. By default the option is switched off, which means that if you call --report, you will get the list of loops in the current application, and will not get the list of functions. To show both, use --show-functions.
The option is similar to the Intel® Advisor GUI filter by functions.
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