We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 798430b commit 84870b3Copy full SHA for 84870b3
vpr/src/route/route.cpp
@@ -42,6 +42,10 @@ bool route(const Netlist<>& net_list,
42
graph_directionality = GRAPH_BIDIR;
43
} else {
44
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
+ }
49
graph_directionality = (det_routing_arch->directionality == BI_DIRECTIONAL ? GRAPH_BIDIR : GRAPH_UNIDIR);
50
}
51
0 commit comments