Global Routing Constraints¶
VPR allows users to designate specific nets in the input netlist as global and define the routing model for the global nets by utilizing a VPR constraints XML file. These routing constraints for global nets are specified inside the VPR constraints file in XML format, as described in the following section.
A Global Routing Constraints File Example¶
1<vpr_constraints tool_name="vpr">
2 <global_route_constraints>
3 <set_global_signal name="clock*" route_model="dedicated_network" network_name="clock_network"/>
4 </global_route_constraints>
5</vpr_constraints>
Global Routing Constraints File Format¶
- <global_route_constraints>content</global_route_constraints>¶
Content inside this tag contains a group of
<set_global_signal>
tags that specify the global nets and their assigned routing methods.
- <set_global_signal name="string" route_model="{ideal|route|dedicated_network}" network_name="string"/>" title="Permalink to this definition">¶
- Required Attributes:
name – The name of the net to be assigned as global. Regular expressions are also accepted.
route_model –
The route model for the specified net.
ideal
: The net is not routed. There would be no delay for the global net.route
: The net is routed similarly to other nets using generic routing resources.dedicated_network
: The net will be routed through a dedicated clock network.
network_name – The name of the clock network through which the net is routed. This parameter is required when
route_model="dedicated_network"
.
Dedicated Clock Networks¶
Users can define a clock architecture in two ways. First, through the architecture description outlined in section Clocks. By using the <clocknetworks>
tag, users can establish a single clock architecture with the fixed default name “clock_network”. When routing a net through the dedicated network described with this tag, the network name must be set to "clock_network"
.
Alternatively, users can define a custom clock network architecture by inputting a custom resource routing graph. In this approach, users can specify various clock routing networks, such as a global clock network and multiple regional clock networks. There are three main considerations for defining a clock network through a custom RR graph definition, as described in the following sections.
Virtual Sinks Definition for Clock Networks¶
For VPR to route global nets within defined clock networks, there needs to be a virtual sink node defined in the RR graph per each clock network. This virtual sink, which is of the type "SINK"
, must have incoming edges from all drive points of the clock network. The two-stage router used for global net routing will initially route to the virtual sink (which serves as the entry point of the clock network) in the first stage and then from the entry point to the actual sink of the net in the second stage.
To indicate that a node represents a clock network virtual sink, users can utilize the "clk_res_type"
attribute on a node setting it to "VIRTUAL_SINK"
.
Distinguishing Between Clock Networks¶
Given the support for multiple clock networks, VPR needs a way to distinguish between different virtual sinks belonging to various clock networks. This is achieved through the optional "name"
attribute for the rr_node, accepting a string used as the clock network name. Therefore, when the "clk_res_type"
is set to "VIRTUAL_SINK"
, the attribute "name"
becomes a requried parameter to enable VPR to determine which clock network the virtual sink belongs to.
When specifying the network_name in a global routing constraints file for routing a global net through a desired clock network, as described in the above section, the name defined as an attribute in the virtual sink of the clock network should be used to reference that clock network.
Segment Definition for Clock Networks¶
The node types "CHANX"
and "CHANY"
can construct the clock routing architecture, similar to a generic routing network. However, to identify nodes that are part of a clock network, one can define unique segments for clock networks. To indicate that a segment defined is a clock network resource, users can use the optional attribute res_type="GCLK"
. Therefore, nodes with a segment ID of this defined segment are considered to be part of a clock network.
While VPR currently does not leverage this distinction of clock network resources, it is recommended to use the res_type="GCLK"
attribute, as this preparation ensures compatibility for future support.
Example of RR Graph Definition for Clock Networks¶
Below are snapshots of a sample RR graph that illustrate how to define a clock network. This example demonstrates the definition of a virtual sink node, a clock network segment, and a CHANY node that is part of the clock network.
For the node with id="12746"
, the res_type="VIRTUAL_SINK"
attribute marks it as the virtual sink node of a clock network named "global_network"
, as specified by the name
attribute.
For the segment with id="1"
, the res_type="GCLK"
attribute indicates that this segment is a clock network resource.
The "CHANY"
node with the id="12746"
has segment_id="1"
, which means this resource belongs to the clock network.
1 <rr_nodes>
2 <!-- Definition of a virtual sink node for a clock network named "global_network" -->
3 <node capacity="1" clk_res_type="VIRTUAL_SINK" id="12746" name="global_network" type="SINK">
4 <loc layer="0" ptc="72" xhigh="6" xlow="6" yhigh="6" ylow="6"/>
5 <timing C="0" R="0"/>
6 </node>
7
8 <!-- Definition of a CHANY node as part of the clock network -->
9 <node capacity="1" direction="BI_DIR" id="12668" type="CHANY">
10 <loc layer="0" ptc="20" xhigh="6" xlow="6" yhigh="6" ylow="6"/>
11 <timing C="1.98240038e-13" R="50.4199982"/>
12 <segment segment_id="1"/>
13 </node>
14
15 <!-- ... other nodes ... -->
16 </rr_nodes>
17
18 <segments>
19 <!-- Definition of a clock network segment -->
20 <segment id="1" name="spine1_drive" res_type="GCLK">
21 <timing C_per_meter="2.06999995e-14" R_per_meter="50.4199982"/>
22 </segment>
23
24 <!-- ... other segments ... -->
25 </segments>