Skip to content

Commit cca6f6d

Browse files
committed
add back TBB
1 parent 87b2b50 commit cca6f6d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/scripts/hostsetup.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ apt install -y \
6969
default-jdk \
7070
g++-9 \
7171
gcc-9 \
72-
wget
72+
wget \
73+
libtbb-dev
7374

7475
# installing the latest version of cmake
7576
apt install -y apt-transport-https ca-certificates gnupg

vpr/src/route/route_timing.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1840,8 +1840,8 @@ size_t dynamic_update_bounding_boxes(const std::vector<ParentNetId>& updated_net
18401840
//Walk through each net, calculating the bounding box of its current routing,
18411841
//and then increase the router's bounding box if the two are close together
18421842

1843-
size_t grid_xmax = grid.width() - 1;
1844-
size_t grid_ymax = grid.height() - 1;
1843+
int grid_xmax = grid.width() - 1;
1844+
int grid_ymax = grid.height() - 1;
18451845

18461846
size_t num_bb_updated = 0;
18471847

0 commit comments

Comments
 (0)