diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-02-03 14:57:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 14:57:17 +0100 |
commit | 34d2fbd2f96a8789aa7eb655318308e11949eb7a (patch) | |
tree | 246fac88cc076f041cb9194bf6e4f954d50fd78c /tests/opt | |
parent | 7033503cd9e40e16c11fe6c805a436b0e23989dd (diff) | |
download | yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.tar.gz yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.tar.bz2 yosys-34d2fbd2f96a8789aa7eb655318308e11949eb7a.zip |
Add opt_lut_ins pass. (#1673)
Diffstat (limited to 'tests/opt')
-rw-r--r-- | tests/opt/opt_lut_ins.ys | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/opt/opt_lut_ins.ys b/tests/opt/opt_lut_ins.ys new file mode 100644 index 000000000..82460b164 --- /dev/null +++ b/tests/opt/opt_lut_ins.ys @@ -0,0 +1,23 @@ +read_ilang << EOF + +module \top + + wire width 4 input 1 \A + + wire output 2 \Y + + cell $lut \lut + parameter \LUT 16'1111110011000000 + parameter \WIDTH 4 + connect \A \A + connect \Y \Y + end +end + +EOF + +equiv_opt -assert opt_lut_ins + +design -load postopt + +select -assert-count 1 t:$lut r:WIDTH=3 %i |