We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to a typo I had something like this
addr = Signal(32) self.mem.bit_select(addr[2:], 1)
which upon conversion to verilog quickly exhausted all my available RAM.
Maybe it is possible to emit a warning when the number of possible values in LegalizeValue is huge?
LegalizeValue
The text was updated successfully, but these errors were encountered:
How large is self.mem?
self.mem
Sorry, something went wrong.
In this case 8 bits.
Then by definition the backend should not ever legalize to more than 8 branches.
Yeah, true.
8b05b28
No branches or pull requests
Due to a typo I had something like this
which upon conversion to verilog quickly exhausted all my available RAM.
Maybe it is possible to emit a warning when the number of possible values in
LegalizeValue
is huge?The text was updated successfully, but these errors were encountered: