report_set
report_set -setd_setObj-format {text|CSV} [ -files_fileName] [ -append ]
Description
Creates a report for a set of objects. The report contains information about objects (instances, nets and shapes) in the set. You can choose the output file name and must specify the format for the report.
Arguments
Examples
The following commands find all nets whose names begin with RESULTS_CONV_INST_n and stores the set of objects in a Tcl variable net. The second command creates a text report of all objects in the set defined by the Tcl variable net and outputs the results to file report.txt.
set net [find_net -name ^RESULTS_CONV_INST_n]
report_set -format text -set $net -file report.txt
The following command creates a comma-separated values file of all objects in set inst_high and outputs the results to a file with a default name that includes the date and time the file was created.
report_set -set $inst_high -format CSV
Related Topics
Return to top