Intel® Advisor Help

report

Generate a report from data collected during a previous analysis.

GUI Equivalent

Intel Advisor standalone GUI: View > select <report_type>

Syntax

-report <report_type>

Arguments

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.

Default

None. You must specify the report type.

Modifiers

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.

Description

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.

Example

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

See Also