chore: small fix in dec
Browse files
engine.py
CHANGED
@@ -230,7 +230,7 @@ class HyenaInferenceEngine:
|
|
230 |
|
231 |
if iir_groups > 1:
|
232 |
raise NotImplementedError
|
233 |
-
y = x2 * res_state + D * x1v
|
234 |
|
235 |
return y, iir_state
|
236 |
|
|
|
230 |
|
231 |
if iir_groups > 1:
|
232 |
raise NotImplementedError
|
233 |
+
y = x2 * (res_state + D * x1v)
|
234 |
|
235 |
return y, iir_state
|
236 |
|