File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,11 @@ class RRGraphBuilder {
145
145
node_storage_.remap_rr_node_switch_indices (switch_fanin);
146
146
}
147
147
148
+ /* * @brief Marks that edge switch values are rr switch indicies*/
149
+ inline void mark_edges_as_rr_switch_ids () {
150
+ node_storage_.mark_edges_as_rr_switch_ids ();
151
+ }
152
+
148
153
/* * @brief Counts the number of rr switches needed based on fan in to support mux
149
154
* size dependent switch delays. */
150
155
inline size_t count_rr_switches (
Original file line number Diff line number Diff line change @@ -958,7 +958,7 @@ class RrGraphSerializer final : public uxsd::RrGraphBase<RrGraphContextTypes> {
958
958
// Partition the rr graph edges for efficient access to
959
959
// configurable/non-configurable edge subsets. Must be done after RR
960
960
// switches have been allocated.
961
- rr_nodes_ ->mark_edges_as_rr_switch_ids ();
961
+ rr_graph_builder_ ->mark_edges_as_rr_switch_ids ();
962
962
rr_nodes_->partition_edges ();
963
963
964
964
for (int source_node = 0 ; source_node < (ssize_t )rr_nodes_->size (); ++source_node) {
You can’t perform that action at this time.
0 commit comments