Intel® Advisor User Guide

ID 766448
Date 3/31/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

format

Set a report output format.

Syntax

--format=<string>

Arguments

<string> is one of the following:

Argument

Description

csv

Tabular (.csv) file format

text

.txt file format

xml

.xml file format

Default

text

Actions Modified

report

Usage

By default, the advisor writes a report to standard output in text format; however, it provides a number of options for generating a report:

  • Use the report-output option to write a report to a file.

  • Use the csv-delimiter option to set a delimiter other than a comma.

Example

Generate a Dependencies report. Output in XML format. Save it as advisor-Dependencies.xml.

advisor --report=dependencies --format=xml --report-output=./out/advisor-Dependencies.xml --project-dir=./advi_results

Generate a Dependencies report. Output in CSV format with tab delimiters. Save it as advisor-Dependencies.csv.

advisor --report=dependencies --format=csv --csv-delimiter=tab --report-output=./out/advisor-Dependencies.csv --project-dir=./advi_results

See Also