You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the state output logic of the RTL Gcd example, the if condition is missing "else" branch, which will generate inferred latches when pushing through synthesis flow.
Specifically, if current_state == 3, then we're not writing to the outputs, resulting in inferred latches:
In the state output logic of the RTL Gcd example, the if condition is missing "else" branch, which will generate inferred latches when pushing through synthesis flow.
Specifically, if current_state == 3, then we're not writing to the outputs, resulting in inferred latches:
https://github.com/cornell-brg/pymtl/blob/master/examples/gcd/GcdUnitRTL.py#L212-L242
The text was updated successfully, but these errors were encountered: