start debugging tileable rr_graph generator
This commit is contained in:
parent
5be118d695
commit
f54f46483b
|
@ -829,6 +829,11 @@ void vpr_create_rr_graph(t_vpr_setup& vpr_setup, const t_arch& arch, int chan_wi
|
||||||
graph_type = GRAPH_GLOBAL;
|
graph_type = GRAPH_GLOBAL;
|
||||||
} else {
|
} else {
|
||||||
graph_type = (det_routing_arch->directionality == BI_DIRECTIONAL ? GRAPH_BIDIR : GRAPH_UNIDIR);
|
graph_type = (det_routing_arch->directionality == BI_DIRECTIONAL ? GRAPH_BIDIR : GRAPH_UNIDIR);
|
||||||
|
/* Branch on tileable routing */
|
||||||
|
if ( (UNI_DIRECTIONAL == det_routing_arch->directionality)
|
||||||
|
&& (true == arch.tileable) ) {
|
||||||
|
graph_type = GRAPH_UNIDIR_TILEABLE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int warnings = 0;
|
int warnings = 0;
|
||||||
|
|
|
@ -1504,6 +1504,7 @@ void free_rr_graph() {
|
||||||
|
|
||||||
/* Xifan Tang - Clear the rr_graph object */
|
/* Xifan Tang - Clear the rr_graph object */
|
||||||
device_ctx.rr_graph.clear();
|
device_ctx.rr_graph.clear();
|
||||||
|
device_ctx.rr_node_track_ids.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void build_rr_sinks_sources(const int i,
|
static void build_rr_sinks_sources(const int i,
|
||||||
|
|
Loading…
Reference in New Issue