mirror of https://github.com/VLSIDA/OpenRAM.git
fix height calculation bug for replica array
This commit is contained in:
parent
cc408447b1
commit
2f795f8068
|
|
@ -255,7 +255,7 @@ class replica_bitcell_array(bitcell_base_array):
|
||||||
|
|
||||||
self.route_supplies()
|
self.route_supplies()
|
||||||
|
|
||||||
self.height = (len(self.rbl) + self.row_size) * self.cell.height
|
self.height = (sum(self.rbl) + self.row_size) * self.cell.height
|
||||||
self.width = (len(self.rbls) + self.column_size) * self.cell.width
|
self.width = (len(self.rbls) + self.column_size) * self.cell.width
|
||||||
|
|
||||||
self.add_boundary()
|
self.add_boundary()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue