We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
write_aiger
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
Yosys 0.44 (git sha1 80ba43d, g++ 14.2.0-4ubuntu2~24.04 -fPIC -O3)
Linux
$ yosys -s syn.txt
syn.txt
read_verilog -sv ../sources_1/new/*.sv hierarchy -check -top Datapath proc; opt; fsm; opt; memory; opt techmap; async2sync; opt; flatten; alumacc; dffunmap; aigmap; opt; write_aiger -zinit -symbols -vmap datapath.aim datapath.aig
verilog is from: https://github.com/martinKindall/risc-v-single-cycle commit 5c6bf3c94553fdb00e7622c7ee5e6975fa5a38b4
git clone --depth 1 https://github.com/martinKindall/risc-v-single-cycle commit temp_dir cd temp_dir git fetch --depth 1 origin 5c6bf3c94553fdb00e7622c7ee5e6975fa5a38b4 git checkout 5c6bf3c94553fdb00e7622c7ee5e6975fa5a38b4 mkdir syn cd syn echo "read_verilog -sv ../sources_1/new/*.sv \ hierarchy -check -top Datapath \ proc; opt; fsm; opt; memory; opt \ techmap; \ async2sync; \ opt; flatten; \ alumacc; dffunmap; aigmap; opt;\ write_aiger -zinit -symbols -vmap datapath.aim datapath.aig \ " > syn.txt yosys -s syn.txt
Export and-inverter graph and mapping files, or report error.
uncaught std::out_of_range exception.
The text was updated successfully, but these errors were encountered:
This bug also occurred when using the Ubuntu 24.04 packaged version (yosys 0.33)
Sorry, something went wrong.
Reduced
module bad( input in, output reg [1:0] out ); assign out = {in, 1'b0}; endmodule
read_verilog bug.il; proc; aigmap; write_aiger -vmap /dev/null /dev/null
read_verilog bug.il; proc; aigmap; write_aiger -map /dev/null /dev/null
also crashes
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Version
Yosys 0.44 (git sha1 80ba43d, g++ 14.2.0-4ubuntu2~24.04 -fPIC -O3)
On which OS did this happen?
Linux
Reproduction Steps
syn.txt
verilog is from: https://github.com/martinKindall/risc-v-single-cycle commit 5c6bf3c94553fdb00e7622c7ee5e6975fa5a38b4
Expected Behavior
Export and-inverter graph and mapping files, or report error.
Actual Behavior
uncaught std::out_of_range exception.
The text was updated successfully, but these errors were encountered: