Skip to content

Commit 3f0b84e

Browse files
Latency bugfix
1 parent 25f03b7 commit 3f0b84e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hwcomponents_cacti/hwcomponents_cacti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(
9797
self.type = type
9898
self.energy, self.throughput = self.type2energylatency[type]
9999
self.width = self.assert_int("width", width)
100-
self.latency = 1 / self.throughput / self.width
100+
self.latency = 1 / self.throughput
101101

102102
if type in ["LPDDR4", "LPDDR", "DDR3"]:
103103
assert (

0 commit comments

Comments
 (0)