Skip to content

Commit 4a6043d

Browse files
committed
apply Soheil's comments
1 parent eb32635 commit 4a6043d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

vpr/src/place/initial_placement.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,12 +1187,13 @@ void initial_placement(const t_placer_opts& placer_opts,
11871187
clear_all_grid_locs();
11881188

11891189
/* Go through cluster blocks to calculate the tightest placement
1190-
* floorplan constraint for each constrained block
1191-
*/
1190+
* floorplan constraint for each constrained block
1191+
*/
11921192
propagate_place_constraints();
11931193

11941194
/*Mark the blocks that have already been locked to one spot via floorplan constraints
1195-
* as fixed, so they do not get moved during initial placement or later during the simulated annealing stage of placement*/
1195+
* as fixed, so they do not get moved during initial placement or later during the simulated annealing stage of placement
1196+
*/
11961197
mark_fixed_blocks();
11971198

11981199
// Compute and store compressed floorplanning constraints

vpr/src/place/place.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ void try_place(const Netlist<>& net_list,
462462
if (!placer_opts.write_initial_place_file.empty()) {
463463
print_place(nullptr,
464464
nullptr,
465-
(placer_opts.write_initial_place_file).c_str());
465+
placer_opts.write_initial_place_file.c_str());
466466
}
467467

468468
#ifdef ENABLE_ANALYTIC_PLACE

0 commit comments

Comments
 (0)