Skip to content

Commit 3d6fc1c

Browse files
[LOGGING] Fixed LUT Sizing Issue
1 parent 21d0150 commit 3d6fc1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/base/read_circuit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ static void show_circuit_stats(const AtomNetlist& netlist) {
160160
auto port_id = *in_ports.begin();
161161

162162
//Figure out the LUT size
163-
lut_size = netlist.port_width(port_id);
163+
lut_size = netlist.port_pins(port_id).size();
164164

165165
} else {
166166
VTR_ASSERT(in_ports.size() == 0);

0 commit comments

Comments
 (0)