[core] fixed a critical bug on computing pin index for subtile in clock taps

This commit is contained in:
tangxifan 2024-07-08 16:12:20 -07:00
parent 6dde383a7f
commit e8f9deeeaf
1 changed files with 2 additions and 1 deletions

View File

@ -205,8 +205,9 @@ int find_physical_tile_pin_index(t_physical_tile_type_ptr physical_tile,
/* Reach here, we get the port we want, return the accumulated index */
size_t accumulated_pin_idx =
sub_tile_port.absolute_first_pin_index +
sub_tile.num_phy_pins * (tile_info.get_lsb() - sub_tile.capacity.low) +
(sub_tile.num_phy_pins / sub_tile.capacity.total()) * (tile_info.get_lsb() - sub_tile.capacity.low) +
pin_info.get_lsb();
VTR_LOG("Pin index: %lu\n", accumulated_pin_idx);
return accumulated_pin_idx;
}
}