From 22164ac5b27601576b2c3df537d448d68b6558ee Mon Sep 17 00:00:00 2001 From: mikesinouye Date: Mon, 9 Sep 2024 11:55:48 -0700 Subject: [PATCH] Add path-specific nvp breakdowns to PPA proto. (#352) Signed-off-by: Mike Inouye --- synthesis/power_performance_area.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/synthesis/power_performance_area.proto b/synthesis/power_performance_area.proto index ebf8aac7..e970e61a 100644 --- a/synthesis/power_performance_area.proto +++ b/synthesis/power_performance_area.proto @@ -165,9 +165,11 @@ message TimingBreakdown { // See `setup_wns_ps` and `setup_tns_ps` descriptions for details. optional sint32 setup_wns_ps = 1; optional sint64 setup_tns_ps = 2; + optional int32 num_setup_violations = 5; // See `hold_wns_ps` and `hold_tns_ps` descriptions for details. optional sint32 hold_wns_ps = 3; optional sint64 hold_tns_ps = 4; + optional int32 num_hold_violations = 6; } message Power {