Skip to content

Commit c992db7

Browse files
fix compilation error in detailed_placer.cpp
1 parent d2c64e7 commit c992db7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

vpr/src/analytical_place/detailed_placer.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,12 @@ AnnealerDetailedPlacer::AnnealerDetailedPlacer(const BlkLocRegistry& curr_cluste
4949
const ClusteredNetlist& clustered_netlist,
5050
t_vpr_setup& vpr_setup,
5151
const t_arch& arch)
52-
: DetailedPlacer(
53-
,
52+
: DetailedPlacer()
5453
// TODO: These two variables needed to be stored in the class since
5554
// the Placer stores a reference to these objects. These
5655
// should really be initialized and stored into the Placer
5756
// class directly.
58-
pb_gpin_lookup_(g_vpr_ctx.device().logical_block_types)
57+
, pb_gpin_lookup_(g_vpr_ctx.device().logical_block_types)
5958
, netlist_pin_lookup_(clustered_netlist, atom_netlist, pb_gpin_lookup_) {
6059
// Initialize the place delay model.
6160
// TODO: This initialization is complicated. Should be moved within create_delay_model
@@ -100,7 +99,7 @@ void AnnealerDetailedPlacer::optimize_placement() {
10099
// Copy the placement solution into the global placement solution.
101100
placer_->copy_locs_to_global_state(g_vpr_ctx.mutable_placement());
102101

103-
// Since the placement was modified, need to resyncronize the pins in the
102+
// Since the placement was modified, need to resynchronize the pins in the
104103
// clusters.
105104
post_place_sync();
106105
}

0 commit comments

Comments
 (0)