Skip to content

Commit

Permalink
[LOGGING] Fixed LUT Sizing Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreSinger committed Aug 14, 2024
1 parent 21d0150 commit 3d6fc1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpr/src/base/read_circuit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static void show_circuit_stats(const AtomNetlist& netlist) {
auto port_id = *in_ports.begin();

//Figure out the LUT size
lut_size = netlist.port_width(port_id);
lut_size = netlist.port_pins(port_id).size();

} else {
VTR_ASSERT(in_ports.size() == 0);
Expand Down

0 comments on commit 3d6fc1c

Please sign in to comment.