Intel® Advisor Help
Generate a report from data collected during a previous analysis.
Intel Advisor standalone GUI: View > select <report_type>
-report <report_type> |
Report types: survey | suitability | Dependencies | annotations | summary
survey |
Generate a Survey report from Survey analysis data. |
suitability |
Generate a Suitability report from Suitability analysis data. A variety of other options are available for suitability reports. |
dependencies |
Generate a dependencies report from dependencies analysis data. |
map |
Generate a memory access patterns (MAP) information - data about memory access strides. |
annotations |
Generate an Annotation report. This displays where annotations are placed in the source code. |
summary |
Generate a Summary report, which summarizes the analysis. |
None. You must specify the report type.
For all reports: format, option-file, project-dir, quiet, search-dir, verbose.
For Suitability reports only: enable-task-chunking, number-of-processors, reduce-lock-contention, reduce-lock-overhead, reduce-site-overhead, reduce-task-overhead, threading-model.
Use this action to generate the specified type of report from the result data of a previous analysis. The analysis type used during the collect action determines which report types you can specify. Suitability reports are the most configurable, allowing you to set the threading model, number of processors, and other options.
By default, a report is written to standard output in text format, but the advixe-cl tool provides a number of options you can use when generating a report.
To write a report to a file, use the report-output option.
Generate a Suitability report in text format.
$ advixe-cl -report suitability -project-dir ./advi -format text -report-output ./out/suitability.txt
This command generates a Dependencies report with tab delimiters and saves it as advisor-Dependencies.csv.
$ advixe-cl -report Dependencies -project-dir ./advi -format csv -csv-delimiter tab -report-output ./out/advisor-Dependencies.csv