Skip to content

Commit

Permalink
[CIRCT] Upgrade to 1.66.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Mar 11, 2024
1 parent f08e78c commit a45b889
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"staticfg",
"networkx",
"uinspect",
"circt==1.59.1.dev51",
"circt==1.66.0",
],
python_requires='>=3.6',
long_description=long_description,
Expand Down
20 changes: 10 additions & 10 deletions tests/test_backend/test_mlir/golds/complex_lut.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ module LUT(
);

wire [3:0] _GEN = '{1'h1, 1'h1, 1'h0, 1'h0};
wire [3:0] _GEN_0 = '{1'h0, 1'h1, 1'h1, 1'h1};
wire [3:0] _GEN_1 = '{1'h0, 1'h1, 1'h1, 1'h0};
wire [3:0] _GEN_2 = '{1'h1, 1'h0, 1'h0, 1'h0};
wire [3:0] _GEN_3 = '{1'h0, 1'h1, 1'h0, 1'h1};
wire [3:0] _GEN_4 = '{1'h1, 1'h0, 1'h1, 1'h1};
wire [3:0] _GEN_5 = '{1'h1, 1'h1, 1'h1, 1'h0};
wire [3:0] _GEN_6 = '{1'h0, 1'h0, 1'h1, 1'h0};
wire [3:0] _GEN_0 = '{1'h0, 1'h1, 1'h0, 1'h1};
wire [3:0] _GEN_1 = '{1'h1, 1'h1, 1'h1, 1'h0};
wire [3:0] _GEN_2 = '{1'h0, 1'h1, 1'h1, 1'h0};
wire [3:0] _GEN_3 = '{1'h0, 1'h0, 1'h1, 1'h0};
wire [3:0] _GEN_4 = '{1'h1, 1'h0, 1'h0, 1'h0};
wire [3:0] _GEN_5 = '{1'h1, 1'h0, 1'h1, 1'h1};
wire [3:0] _GEN_6 = '{1'h0, 1'h1, 1'h1, 1'h1};
wire struct packed {logic [7:0] x; logic y; } _GEN_7 =
'{x: {1'h0, _GEN_1[I], _GEN_6[I], _GEN_2[I], 1'h1, _GEN_4[I], 1'h1, _GEN_0[I]},
y: _GEN_5[I]};
'{x: {1'h0, _GEN_2[I], _GEN_3[I], _GEN_4[I], 1'h1, _GEN_5[I], 1'h1, _GEN_6[I]},
y: _GEN_1[I]};
wire struct packed {logic [7:0] x; logic y; } _GEN_8 =
'{x: {_GEN_0[I], _GEN_1[I], 1'h0, _GEN_2[I], _GEN_3[I], 1'h0, _GEN_4[I], _GEN_0[I]},
'{x: {_GEN_6[I], _GEN_2[I], 1'h0, _GEN_4[I], _GEN_0[I], 1'h0, _GEN_5[I], _GEN_6[I]},
y: _GEN[I]};
assign O = {{_GEN_8}, {_GEN_7}};
endmodule
Expand Down

0 comments on commit a45b889

Please sign in to comment.