Skip to content

[Place] Fix y_range Calculation for Placement #2958

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vpr/src/place/move_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type,
std::unordered_set<int> tried_dy;
while (!legal && (int)tried_dy.size() < y_range) { //Until legal or all possibilities exhausted
//Randomly pick a y location
int dy = rng.irand(y_range - 1);
int dy = rng.irand(y_range);

//Record this y location as tried
auto res2 = tried_dy.insert(dy);
Expand Down
Loading