We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 602519a commit ec488cdCopy full SHA for ec488cd
hdl/syn/afcv4_ref_design/check_timing.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+
3
+vivado afcv4_ref_fofb_ctrl.xpr -mode batch -source check_timing.tcl
hdl/syn/afcv4_ref_design/check_timing.tcl
@@ -0,0 +1,13 @@
+set wns [get_property STATS.WNS [get_runs impl_1]]
+set whs [get_property STATS.WHS [get_runs impl_1]]
4
+puts "WNS: ${wns}"
5
+puts "WHS: ${whs}"
6
7
+if {($wns < 0) || ($whs < 0)} {
8
+ puts "Failed timing!"
9
+ exit 1
10
+} else {
11
+ puts "Passed timing."
12
+ exit 0
13
+}
0 commit comments