File size: 9,871 Bytes
dc3de35 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | ---
title: Several ships in one image
summary: The second routing layer, the three structural properties of a link, what crosses a boundary, and the address map.
tags:
- architecture
- ship
- interlink
---
# Several ships in one image
One **mesh** β a grid of routers with endpoints attached, the fabric a ship is
built around β is bounded by how much fabric one SLR can hold. An SLR is one die
of the several this part is built from. Past that bound, the answer is not a
bigger mesh: it is several meshes, joined at their system nodes by an
**interlink**.
That decision was made on measurement rather than on argument, and the losing
option is instructive: a single mesh spanning several SLRs was implemented, and
its worst path was almost entirely route delay with no logic in it. Stretching
the fabric across a boundary does not fail because of wire count; it fails
because a fabric whose premise is locality stops having any. See
[physical/where-the-boundary-falls](../physical/where-the-boundary-falls.md) for
the general form, and
[projects/kohakutpu/ship](../../projects/kohakutpu/ship.md) for the worked
instance β the device, the mesh populations, the alternative that failed, and
what has actually been placed.
## The interlink is a second routing layer
It does not inherit the fabric's deadlock proof, so it gets its own by the same
argument, on the shape the silicon has. A die-to-die crossing joins only
ADJACENT dies, so the meshes form a **line**, and the line is the index order:
mesh `i` sits on die `i`.
```
mesh0 ββ mesh1 ββ mesh2 ββ mesh3 link0 is the neighbour one position DOWN
pos 0 pos 1 pos 2 pos 3 link1 is the neighbour one position UP
```
The switch (`mag_switch`) writes that order exactly once, as a constant, and
derives each neighbour from it rather than taking a configured peer id β a
separately configured id would be a second place for the topology to be wrong,
and the two would disagree in silence. Routing is **one comparison**: move one
position toward the destination. Two consequences, both load-bearing:
- Position is monotone along a path, so a packet never reverses. Upward
traffic depends only on upward channels and downward only on downward: two
disjoint chains, acyclic, hence deadlock-free. **A ring would close that
cycle**, so the ends are ends β the missing neighbour's port is tied off, and
a packet arriving there still needing a forward is a fault to report rather
than a case to handle.
- A mesh **forwards traffic that is nothing to do with it**. Transit and local
egress merge round-robin rather than transit-first: strict priority would let
a saturated through-stream pin the local queue's head, and round-robin bounds
a forward's wait at one local packet.
There are two links per mesh, not `N`. The mesh id is a fixed narrow field, so
adding a fifth mesh is a change to the message format rather than a parameter
change, and a port count that cannot vary should not be written as though it
can.
## Three structural properties of a link
Each is a rule rather than a preference, and each has a physical reason behind
it that belongs to [physical](../physical/) but shows up here as protocol.
**Nothing combinational crosses.** Every output is a register and every input is
registered before use. A die-boundary crossing register *is* a flip-flop, so the
tool can only use one when the path is flop to flop; one gate anywhere in the
crossing forfeits it and the path becomes ordinary interconnect. See
[physical/device-facts](../physical/device-facts.md#hard-limits-that-are-correctness-rules).
**`TREADY` does not cross, and the sending end never reads it.** The receiver is
always ready because credit reserved the space before the beat was sent. Wiring
a real slave at the far end would put a combinational path back across the
boundary, which is the thing the whole arrangement exists to avoid β so a
simulation assertion watches for it.
**Credit is per class** β does this packet stop at the peer, or does the peer
forward it. One shared pool would let a stalled forward path stop traffic that
was going to terminate anyway. Credit returns are absorbed into a counter on
arrival and never enter a queue, so no credit return waits on the space it is
about to release.
One small uniformity is worth copying: every packet has at least one beat,
including the two that carry no data. Their beat is zero and ignored. One wasted
beat on two rare packet kinds removes a special case from the framing, both
queues, the arbiter and both benches.
## What crosses, and what "arrived" means
The endpoint carries three kinds of traffic and one rule:
- **Memory writes to another mesh's memory**, split out by address. They are
answered locally and at once β a posted write is the entire point, since
waiting for a far memory would put a boundary round trip inside a per-word
loop.
- **Fabric flits marked for another mesh**, encapsulated at the sending edge and
injected into the receiving mesh's fabric. A **flit** is the mesh's unit of
transfer β one fixed-width word carrying its own header, defined bit-exactly
in [spec/flit-format](../../spec/flit-format.md).
- **A doorbell**, which is the synchronisation primitive between meshes: a
single message a consumer waits on to learn that a producer's writes have
landed.
**Completion means landed.** An inbound doorbell waits for every write ahead of
it to have its write response before it counts, so a consumer released by a
doorbell is released by data that is in memory rather than in a queue. Without
that rule, posted writes and a doorbell are a race with no observable ordering.
**The source coordinate is preserved across a crossing.** Rewriting it to the
receiving edge's own coordinate would make two remote bursts arriving at one
endpoint indistinguishable β and telling senders apart is how a receiving unit
avoids merging two senders' data into one region. The cost is that "answer the
sender" no longer resolves, so a remote transfer must name its acknowledgement
destination explicitly, and a fault register reports one that does not.
A memory request from a compute unit naming another mesh is **not** forwarded.
It aliases to local memory with the mesh bits ignored, exactly as it would in a
single-mesh build, and a fault register records that a program did something the
compiler should have caught. That is a scope decision, not a limitation of the
transport: remote reads would need a return path with its own credit class.
## The address map
The map is a ship-level fact because it is the only place the whole machine is
visible at once. Its shape:
- Each mesh's **memory** occupies its own aligned segment. The high bits of a
memory address therefore name the mesh, which is exactly what the address
split uses to recognise a remote write β one field serving both the host's
view and the interlink's.
- Each mesh's **control window** occupies its own segment in a separate region,
as does each memory controller's own control interface.
A flit likewise carries a spare header bit meaning "this is for another mesh",
which is zero on every flit a single-mesh build ever produces. That is what lets
one compiler target both: the single-mesh case is the multi-mesh case with a
field left at zero, rather than a different encoding.
The mesh id itself is **writable at runtime**, with the elaboration parameter
supplying only its reset value. So several instances of the same generated
module can occupy different positions in the grid, and the instances differ by
configuration rather than by being different modules.
## What it costs
**Several ships in one image cost the interlink once per ship**, plus the
boundary crossing registers. Against a mesh, that is small. Against the
alternative β one mesh stretched across the same area β it is the difference
between a design that closes and one that does not.
Disabled, it costs nothing at all; see
[generation](generation.md#generation-is-elaboration-not-runtime).
## Its accept decision must not reach the fabric
This is a structural rule about where the interlink's flow control may look, and
it is the one place the interlink's design is dictated by the fabric next to it.
**A flit's fields are sliced straight off a router's output register.** So any
term in the interlink's accept decision that *inspects* those fields β a
packet-match comparing the flit's mesh id, transaction type and source; an
arbiter whose grant is the write-accept β puts that router's own `ready` inside
the interlink's combinational cone. From there it reaches the next router's
memory enable, and the chain zig-zags router β node β router β node β router
across three levels of hierarchy. Cells that are logically far apart get placed
far apart, so the result is a path that is mostly route delay: a placement
failure produced by a logic decision.
**The fix is a skid buffer at every such point**, chosen for one property β its
input-ready is never a function of its output-ready. That breaks the cone at the
boundary rather than pipelining what is behind it. Applied at both the landing
channel and the encoder, it takes the mesh from failing to positive worst slack
in **out-of-context synthesis** of the whole mesh top β `scripts/py/ooc_mesh.py`
on `ktpu_ship_2x2_6c2v_1m`, tag `_pe`, `xcvu13p-fhgb2104-2L-e`, Vivado 2024.2,
every clock at 3.333 ns, `-directive default`. **Synthesis slack is optimistic
and a positive number there is not a closed one** β see
[physical/measurement](../physical/measurement.md).
The extra cycle a skid costs is free here, and for a reason that belongs to the
protocol rather than to the fix: cross-mesh traffic is push-only and
synchronises on the doorbell, never on a producer going idle. Nothing observes
the latency.
|