Skip to content

Commit a446074

Browse files
add vpr_tight_floorplan_3d to task list
1 parent ba78649 commit a446074

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vpr/src/base/vpr_constraints_writer.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int
103103
//load two arrays - one for horizontal cutpoints and one for vertical
104104

105105
std::vector<int> horizontal_cuts;
106-
107106
std::vector<int> vertical_cuts;
108107

109108
// This function has not been tested for multi-layer grids
@@ -147,7 +146,7 @@ void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int
147146
int ymin = vertical_cuts[j];
148147
int ymax = vertical_cuts[j + 1] - 1;
149148

150-
Region reg(xmin, ymin, xmax, ymax, 0, n_layers-1);
149+
Region reg(xmin, ymin, xmax, ymax, 0, n_layers - 1);
151150
// This function has not been tested for multi-layer grids. An assertion is used earlier to make sure that the grid has only one layer
152151
std::vector<AtomBlockId> atoms;
153152
region_atoms.insert({reg, atoms});
@@ -158,7 +157,7 @@ void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int
158157
* For each cluster block, see which region it belongs to, and add its atoms to the
159158
* appropriate region accordingly
160159
*/
161-
for (auto blk_id : cluster_ctx.clb_nlist.blocks()) {
160+
for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) {
162161
const std::unordered_set<AtomBlockId>& atoms = cluster_to_atoms(blk_id);
163162
int x = place_ctx.block_locs[blk_id].loc.x;
164163
int y = place_ctx.block_locs[blk_id].loc.y;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
regression_tests/vtr_reg_nightly_test5/vpr_ispd
22
regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan
3+
regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d
34
regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology
45
regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology
56
regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology

0 commit comments

Comments
 (0)