Skip to content

Commit a97d8db

Browse files
committed
[vpr][place] don't skip the x if search range min is below the y found
1 parent cf86a33 commit a97d8db

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

vpr/src/place/move_utils.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1037,9 +1037,6 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type,
10371037
continue;
10381038
}
10391039
auto y_upper_iter = block_rows.upper_bound(search_range.ymax);
1040-
if (y_lower_iter->first > search_range.ymin) {
1041-
continue;
1042-
}
10431040
int y_range = std::distance(y_lower_iter, y_upper_iter);
10441041
VTR_ASSERT(y_range >= 0);
10451042

0 commit comments

Comments
 (0)