Skip to content

Commit 98e3817

Browse files
jhkim-piioharboe
authored andcommitted
test/orfs/mock-array: fix for power reporting
Now uses correct name for power reporting and sees the expected number of Multiplier modules in the CTS .v file from within OpenSTA. Estimated .spef files written by OpenROAD are not compatible with OpenROAD. Co-authored-by: Øyvind harboe <[email protected]> Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 2976317 commit 98e3817

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/orfs/mock-array/power_instances.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
source $::env(LOAD_POWER_TCL)
22

3-
set instances [get_cells ces*/Multiplier*]
4-
if { [llength $instances] != 64 } {
5-
puts "Error: Expected to find 64 Multiplier instances, found [llength $instances]"
3+
set instances [get_cells ces*/io_outs_*_mult]
4+
if { [llength $instances] != (64 * 4) } {
5+
puts "Error: Expected to find 64 Elements * 4 Multiplier instances, found [llength $instances]"
66
exit 1
77
}
88

0 commit comments

Comments
 (0)