Skip to content

Commit 631616d

Browse files
committed
AP High Fanout Net Thresholding: Fix passing type int.
1 parent 780e4ef commit 631616d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vpr/src/analytical_place/gen_ap_netlist_from_atoms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
APNetlist gen_ap_netlist_from_atoms(const AtomNetlist& atom_netlist,
2626
const Prepacker& prepacker,
2727
const UserPlaceConstraints& constraints,
28-
const int& high_fanout_threshold) {
28+
int high_fanout_threshold) {
2929
// Create a scoped timer for reading the atom netlist.
3030
vtr::ScopedStartFinishTimer timer("Read Atom Netlist to AP Netlist");
3131

vpr/src/analytical_place/gen_ap_netlist_from_atoms.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ class UserPlaceConstraints;
2828
APNetlist gen_ap_netlist_from_atoms(const AtomNetlist& atom_netlist,
2929
const Prepacker& prepacker,
3030
const UserPlaceConstraints& constraints,
31-
const int& high_fanout_threshold);
31+
int high_fanout_threshold);

0 commit comments

Comments
 (0)