Skip to content

Commit 1a2df3e

Browse files
Remove unused parameters
1 parent 9f32135 commit 1a2df3e

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

hwcomponents_library/library/aladdin.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ def __init__(
104104
self,
105105
tech_node: float,
106106
width: int = 1,
107-
dynamic_energy: int = 1,
108-
area: int = 5.98e00,
109107
):
110108
super().__init__(leak_power=0.0, area=5.98e-12)
111109
self.tech_node: float = self.scale(
@@ -118,9 +116,6 @@ def __init__(
118116
tech_node_leak,
119117
)
120118
self.width: int = self.scale("width", width, 1, linear, linear, noscale, linear)
121-
self.dynamic_energy: int = self.scale(
122-
"dynamic_energy", dynamic_energy, 1, linear, linear, noscale, linear
123-
)
124119

125120
@action(bits_per_action="width")
126121
def read(self) -> tuple[float, float]:
@@ -245,8 +240,6 @@ def __init__(
245240
width: int = 32,
246241
width_a: int = 32,
247242
width_b: int = 32,
248-
energy: int = 12.68,
249-
area: int = 6350,
250243
):
251244
super().__init__(leak_power=8.00e-5, area=6350.0e-12)
252245
self.tech_node: float = self.scale(

0 commit comments

Comments
 (0)