Skip to content

Commit 84870b3

Browse files
committed
[vpr] add missing support on tileable routing
1 parent 798430b commit 84870b3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vpr/src/route/route.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ bool route(const Netlist<>& net_list,
4242
graph_directionality = GRAPH_BIDIR;
4343
} else {
4444
graph_type = (det_routing_arch->directionality == BI_DIRECTIONAL ? GRAPH_BIDIR : GRAPH_UNIDIR);
45+
/* Branch on tileable routing */
46+
if (det_routing_arch->directionality == UNI_DIRECTIONAL && det_routing_arch->tileable) {
47+
graph_type = GRAPH_UNIDIR_TILEABLE;
48+
}
4549
graph_directionality = (det_routing_arch->directionality == BI_DIRECTIONAL ? GRAPH_BIDIR : GRAPH_UNIDIR);
4650
}
4751

0 commit comments

Comments
 (0)