CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.read_file.txt20 linesDownload Raw Back to src_en
1<h3 id='___read_file'>read_file</h3>2<pre>Read timing violation report file3<b>Usage:</b> my $status = read_file($file_name, @options);4$file_name: file name5@options:6    -format format: accu/pt7                    accu --- Accucore report file. 8                    pt   --- Prime Time report file9$status: If zero, the file is read in successfully10         if one, failed to read in the file11 12 13<b>Note:</b> Prime Time timing report file should be generated by report_timing command with these options14      report_timing -nosplit -path_type full_clock_expanded -delay max/min -input_pins \15                    -nets -max_paths 10000 -transition_time -capacitance16 17<b>Examples:</b>18my $status = read_file("soc_primetime_hold.report", "-format", "pt"); 19 20</pre>