Skip to content

Commit 36e1eb6

Browse files
committed
[vpr][place] remove a special case in find_compatible_compressed_loc_in_range
1 parent 5e8a495 commit 36e1eb6

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

vpr/src/place/move_utils.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -992,12 +992,6 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type,
992992
}
993993
auto y_upper_iter = block_rows.upper_bound(search_range.ymax);
994994

995-
if (y_lower_iter->first > search_range.ymin) {
996-
if (!is_io_type(type)) {
997-
continue;
998-
}
999-
}
1000-
1001995
int y_range = std::distance(y_lower_iter, y_upper_iter);
1002996
VTR_ASSERT(y_range >= 0);
1003997

0 commit comments

Comments
 (0)