Wormhole switching
Wormhole flow control, also called wormhole switching or wormhole routing, is a system of simple flow control in computer networking based on known fixed links. It is a subset of flow control methods called Flit-Buffer Flow Control.
Switching is a more appropriate term than routing, as "routing" defines the route or path taken to reach the destination. The wormhole technique does not dictate the route to the destination but decides when the packet moves forward from a router.
Wormhole switching is widely used in multicomputers because of its low latency and small requirements at the nodes.
Wormhole routing supports very low-latency, high-speed, guaranteed delivery of packets suitable for real-time communication.
Mechanism principle
In the wormhole flow control, each packet is broken into small pieces called flits.Commonly, the first flits, called the header flits, holds information about this packet's route and sets up the routing behavior for all subsequent flits associated with the packet. The header flits are followed by zero or more body flits which contain the actual payload of data. Some final flits, called the tail flits, perform some bookkeeping to close the connection between the two nodes.
In wormhole switching, each buffer is either idle, or allocated to one packet. A header flit can be forwarded to a buffer if this buffer is idle. This allocates the buffer to the packet. A body or trailer flit can be forwarded to a buffer if this buffer is allocated to its packet and is not full. The last flit frees the buffer. If the header flit is blocked in the network, the buffer fills up, and once full, no more flits can be sent: this effect is called "back-pressure" and can be propagated back to the source.
The name "wormhole" plays on the way packets are sent over the links: the address is so short that it can be translated before the message itself arrives. This allows the router to quickly set up the routing of the actual message and then "bow out" of the rest of the conversation. Since a packet is transmitted flit by flit, it may occupy several flit buffers along its path, creating a worm-like image.
This behaviour is quite similar to cut-through switching, commonly called "virtual cut-through," the major difference being that cut-through flow control allocates buffers and channel bandwidth on a packet level, while wormhole flow control does this on the flit level.
In case of circular dependency, this back-pressure can lead to deadlock.
In most respects, wormhole is very similar to ATM or MPLS forwarding, with the exception that the cell does not have to be queued.
One thing special about wormhole flow control is the implementation of virtual channels:
A virtual channel holds the state needed to coordinate the handling of the flits of a packet over a channel. At a minimum, this state identifies the output channel of the current node for the next hop of the route and the state of the virtual channel. The virtual channel may also include pointers to the flits of the packet that are buffered on the current node and the number of flit buffers available on the next node.
Example
Consider the 2x2 network of the figure on the right, with 3 packets to be sent: a pink one, made of 4 flits, 'UVWX', from C to D; a blue one, made of 4 flits 'abcd', from A to F; and a green one, made of 4 flits 'ijkl', from E to H. We assume that the routing has been computed, as drawn, and implies a conflict of a buffer, in the bottom-left router. The throughput is of one flit per time unit.First, consider the pink flow: at time 1, the flit 'U' is sent to the first buffer; at time 2, the flit 'U' goes through the next buffer, and the flit 'V' is sent to the first buffer, and so on.
The blue and green flows requires a step by step presentation:
- Time 1: Both the blue and green flows send theirs first flits, 'i' and 'a'.
- Time 2: The flit 'i' can go on into the next buffer. But a buffer is dedicated to a packet from its first to its last flit, and so, the 'a' flit can not be forwarded. This is the start of a back-pressure effect. The 'j' flit can replace the 'i' flit. The 'b' flit can be sent.
- Time 3: The green packet goes on. The blue 'c' flit can not be forwarded : this back-pressure effect reaches the packet source.
- Time 4: As in time 3
- Time 5: The green packet no longer uses the left-down buffer. The blue packet is unblocked and can be forwarded
- Time 6-10: The blue packet goes through the network.
Advantages
- Wormhole flow control makes more efficient use of buffers than cut-through. Where cut-through requires many packets worth of buffer space, the wormhole method needs very few flit buffers.
- An entire packet need not be buffered to move on to the next node, decreasing network latency compared to store-and-forward switching.
- Bandwidth and channel allocation are decoupled
Usage
The IEEE 1355 and SpaceWire technologies use wormhole.
Virtual channels
An extension of worm-hole flow control is Virtual-Channel flow control, where several virtual channels may be multiplexed across one physical channel. Each unidirectional virtual channel is realized by an independently managed pair of buffers. Different packets can then share the physical channel on a flit-by-flit basis.Virtual channels were originally introduced to solve the deadlock avoidance problem, but they can be also used to reduce wormhole blocking, improving network latency and throughput. Wormhole blocking occurs when a packet acquires a channel, thus preventing other packets from using the channel and forcing them to stall.
Suppose a packet P0 has acquired the channel between two routers. In absence of virtual channels, a packet P1 arriving later would be blocked until the transmission of P0 has been completed.
If virtual channels are implemented, the following improvements are possible:
- Upon arrival of P1, the physical channel can be multiplexed between them on a flit-by-flit basis, so that both packets proceed with half speed.
- If P0 is a full-length packet whereas P1 is only a small control packet of size of few flits, then this scheme allows P1 pass through both routers while P0 is slowed down for a short time corresponding to the transmission of few packets. This reduces latency for P1.
- Assume that P0 is temporarily blocked downstream from the current router. Throughput is increased by allowing P1 to proceed at the full speed of the physical channel. Without virtual channels, P0 would be occupying the channel, without actually using the available bandwidth.
Routing
A mix of source routing and logical routing may be used in the same wormhole-switched packet.The value of the first byte of a Myrinet or SpaceWire packet is the address of the packet.
Each SpaceWire switch uses the address to decide how to route the packet.
Logical routing
With logical routing, the Spacewire switch itself decides how to route the packet.If the address of an incoming SpaceWire packet is in the range 32 to 255,
the SpaceWire switch uses that value as an index into an internal routing table that indicates which port to send the packet and whether to delete or retain that first byte.
Address 0 is used to communicate directly with the switch, and may be used to set the routing table entries for that switch.