You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the router can handle routing architectures with non-configurably connected RR nodes (i.e. those connected by short or buf type switches). However such nodes are not always costed optimally.
(Note that this is not a correctness issue, the final route trees are constructed correctly so final costs/delays are correct, however it may mean the router itself ends up making poor decisions since it's estimates may be inaccurate.)
At the moment the set of non-configurably connected nodes is sorted within the heap based on the lowest node cost within the set of non-configurably connected nodes.
This results in two issues:
If the set of non-configurably connected nodes is large (e.g. a global signal/clock network) using the minimum node cost will drastically underestimate the resource cost of using such a path (since it actually consists of a large number of RR nodes, and we only count the resource cost of one).
When expanding from the set of non-configurably connected nodes, each node within the set is expanded independently. However, the backward path costs used are those of the minimum cost node in the set -- not to the actual backward path costs used to reach the current set member node being expanded.
Possible Solution
For (1), the calculation of the node set's cost should account for all the resource costs associated with using the set (i.e. the sum of all congestion/resource costs for all RR nodes in the set). This should avoid the cost estimation bias issue.
Resolving (2) would be more involved, since it would require calculating/storing the backward path costs for each node in the set.
Context
#524 provides an example of how underestimating the resource cost of a large non-configurably connected node set can bias the router unnaturally towards preferring global networks.
The text was updated successfully, but these errors were encountered:
Current Behaviour
Currently the router can handle routing architectures with non-configurably connected RR nodes (i.e. those connected by short or buf type switches). However such nodes are not always costed optimally.
(Note that this is not a correctness issue, the final route trees are constructed correctly so final costs/delays are correct, however it may mean the router itself ends up making poor decisions since it's estimates may be inaccurate.)
At the moment the set of non-configurably connected nodes is sorted within the heap based on the lowest node cost within the set of non-configurably connected nodes.
This results in two issues:
If the set of non-configurably connected nodes is large (e.g. a global signal/clock network) using the minimum node cost will drastically underestimate the resource cost of using such a path (since it actually consists of a large number of RR nodes, and we only count the resource cost of one).
When expanding from the set of non-configurably connected nodes, each node within the set is expanded independently. However, the backward path costs used are those of the minimum cost node in the set -- not to the actual backward path costs used to reach the current set member node being expanded.
Possible Solution
For (1), the calculation of the node set's cost should account for all the resource costs associated with using the set (i.e. the sum of all congestion/resource costs for all RR nodes in the set). This should avoid the cost estimation bias issue.
Resolving (2) would be more involved, since it would require calculating/storing the backward path costs for each node in the set.
Context
#524 provides an example of how underestimating the resource cost of a large non-configurably connected node set can bias the router unnaturally towards preferring global networks.
The text was updated successfully, but these errors were encountered: