Skip to content

Commit af29e9d

Browse files
committed
[vpr][place] expand search range if block is io
1 parent caaf456 commit af29e9d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vpr/src/place/move_utils.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1020,8 +1020,7 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type,
10201020
}
10211021
auto y_upper_iter = block_rows.upper_bound(search_range.ymax);
10221022

1023-
if (block_rows.size() < MIN_BLK_PER_COLUMN_EXPAND && !block_constrained) {
1024-
//Fall back to allow the whole y range
1023+
if (is_io_type(type)) {
10251024
y_lower_iter = block_rows.begin();
10261025
y_upper_iter = block_rows.end();
10271026

0 commit comments

Comments
 (0)