File size: 21,153 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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | ---
title: Instruction encoding
summary: The three owners of instruction bits β the NoC header, the memory agent's instruction set, and the compute unit's payload β and which bits belong to each.
tags:
- spec
- normative
- isa
- cu-inst
---
# Instruction encoding
> **Kind: mixed, and marked per section.**
>
> | Section | Kind |
> |---|---|
> | Β§3 β what the mesh reads of a `CU_INST` header | **Fixed** |
> | Β§4 β the memory agent's request encoding and mover commands | **Fixed** |
> | Β§4.3 β which occupant the mover's transform id selects | **Addon** |
> | Β§5 β the ownership split inside the payload | **Fixed** |
> | Β§6 β retirement | **Fixed** |
> | Β§8 β how a unit spends its own 256 bits | **Convention, free.** The agent forces none of it. |
**The instruction space is shared. A compute unit does not own it; it occupies a
region of it.**
That is the single most important thing on this page, and the reason it is worth
stating before anything else is practical rather than territorial: **the memory
instructions already exist.** A compute-unit author is not designing an
instruction set from scratch. They are adding compute semantics to one that
already handles addressing, movement, layout and format conversion. Designing a
`FETCH` opcode that duplicates what a `MEM_RD_REQ` descriptor already does is the
most common way to waste a week here.
This document also exists because the split was never written down. `noc_pkt.vh`
declares one; every compute unit in the tree implements a different one; nothing
reconciles them. Β§5 is the reconciliation, and it is normative.
## 1. The three owners
| # | Owner | Where the bits live | What they encode |
|---|---|---|---|
| 1 | **The mesh** β `kohakuaccel/noc` | The 32-bit flit header of every message | Routing, message class, tag, framing. Β§3. |
| 2 | **The system node** | The payload of `MEM_RD_REQ` / `MEM_WR_REQ`, and the memory mover's command registers | Memory movement: addresses, extents, entry geometry, multicast, and the mover's transform selection. Β§4. |
| 3 | **The compute unit** β yours | The payload of `CU_INST` | Compute semantics. Everything the framework refuses to define, because defining it would decide what the unit computes. Β§5. |
Owners 1 and 2 are **fixed contract**. Owner 3 is **served**: the framework will
not read a bit of it, now or later, without a revision of this specification.
A compute unit's instruction set is therefore not "the CU payload". It is the CU
payload **plus** the memory instructions the unit issues, and a unit design that
does not say which memory instructions it emits is incomplete.
## 2. An instruction is one flit
A `CU_INST` message is exactly **one** flit. `noc_cu_base` pops one flit per
instruction and hands it to the datapath as `inst_flit`; there is no mechanism
anywhere in the framework that gathers several flits into one instruction.
| Quantity | Value at the defaults |
|---|---|
| Instruction body available to a unit | 256 bits |
| Instruction bodies per flit | 1 |
| Flits per instruction | 1 |
A unit whose instruction does not fit in 256 bits **MUST** split it into several
instructions that each retire. It **MUST NOT** attempt a continuation flit: the
second one would be delivered as a separate instruction, retire separately, and
return a separate dispatch credit.
The same holds in the other direction. A memory operation is **not** a `CU_INST`.
It is a `MEM_*` message the unit sends on its own `send_*` path, in the middle of
executing whatever `CU_INST` asked for.
## 3. Owner 1 β what the mesh reads
On a `CU_INST` flit the framework reads **the header, and nothing else**.
| Field | Read by | Used for |
|---|---|---|
| `dst_x`, `dst_y` | the routers | Delivery. Overwritten by the dispatcher from `PROG_DST`. |
| `src_x`, `src_y` | `noc_cu_base` | The address the completion is sent to. Overwritten by the dispatcher with the orchestrator's own coordinates. |
| `type` | `noc_cu_base` | Steering into the instruction FIFO rather than the receive FIFO. |
| `txn` | `noc_cu_base` | Program identifier. Returned as the argument of `SIG_BATCH_COMPLETE`. |
| `last` | `noc_cu_base` | Marks the final instruction of a program, which selects `SIG_BATCH_COMPLETE` over `SIG_INST_COMPLETE`. |
| `rsvd` | β | Reserved. MUST be 0. |
| `payload[255:0]` | **nothing** | β |
Two consequences for a compiler back end:
- **`dst` and `src` in a staged instruction are don't-care.** The orchestrator's
dispatcher stamps the destination from `PROG_DST` and the source with its own
coordinates before pushing the flit. Whatever the back end writes there is
discarded. This is what lets one staged program be dispatched to several nodes.
- **`type`, `txn`, `last` and the payload pass through unchanged.** The back end
owns all four. `txn` is the program identifier and `last` MUST be set on the
final instruction of a program, or a host waiting for `SIG_BATCH_COMPLETE`
waits forever.
## 4. Owner 2 β the memory agent's instruction set
These are instructions a compute-unit author **uses**, not instructions they
define. Read this section before allocating a single bit of your own.
The full protocol β ordering, backpressure, faults, the write reassembly rules β
is in [memory-protocol.md](memory-protocol.md). What follows is the encoding
surface: what can be asked for, and where it is written.
### 4.1 The read descriptor
One `MEM_RD_REQ` flit states an entire fetch. Field positions are in
[flit-format.md](flit-format.md) Β§4.1.
| Field | What it expresses |
|---|---|
| `addr` | Byte address, **40 bits** β the whole physical map, including the aperture bit and the mesh id. [address-map.md](../address-map.md). |
| `len` | Beats minus one, on the plain-read path. |
| `flags[6]` `STREAM` | This descriptor covers `count` consecutive **entries**, not one fetch. |
| `count` | How many, up to 255. |
| `entry_words` | Words per entry. The entry geometry is stated per request, so a client whose line is not the default size streams without changing anything in the agent. |
| `flags[4]`, `flags[5]` | **Reserved and ignored.** Were `QUANT` and `BLAYOUT`; a fetch is never transformed. Β§4.3. |
| `peer`, `n_peer` | Up to three **extra destinations** for the response. The entry is read once. |
| `txn` | The requester's tag. Responses carry it plus the entry index, so nothing needs a cursor. |
What this buys a unit author, stated plainly: **there is no fetch loop to write.**
One flit names a whole run, the agent streams it, and every response flit names
its own destination slot. A unit that issues one request per entry pays a mesh
round trip per entry for nothing.
### 4.2 The write descriptor
One `MEM_WR_REQ` flit followed by its data flits.
| Field | What it expresses |
|---|---|
| `addr` | Byte address of the burst. |
| `len` | Beats minus one, **at most 7**. |
Writes have no flags and no streaming form. Neither reads nor writes select a
transform β see Β§4.3.
### 4.3 Transform selection
> **Kind: Addon.** The selection encoding and the delivery shape are Fixed. What
> the transform *does* is yours.
**A memory request does not select a transform.** `flags[4]` and `flags[5]` used
to be `QUANT` and `BLAYOUT` and are now reserved and ignored; a requester that
sets them gets an untransformed read.
The transform slot belongs to the **memory mover**, and selection rides in its
descriptor:
| field | width | who reads it |
|---|---|---|
| `XFORM_ID` | `ID_W` | the agent β 0 is bypass, *k* routes to occupant *k* |
| `XFORM_MODE` | `MODE_W` | **the occupant only**; the agent carries it and never interprets it |
Selection is an **id, not a bit per transform**, so a design with several
occupants picks one rather than encoding a mask. The framework fixes that the
occupant declares its own geometry β `IN_BITS` and `OUT_WORDS` β because the
mover has to size both walks before the transform has run.
KohakuTPU's occupant at id 1 is a FP16-to-block-format quantiser with a shared
E5M3 scale, 2048 bits in and 1024 out. Nothing in this encoding names that
format.
There is no postprocess hook on the write path. A move converts on its read
side; a drain is written verbatim.
### 4.4 The memory mover
A second instruction set in the system node, reached by **register writes rather
than by a flit**: a layout, gather, fill and transform engine with its own AXI
master and no NoC endpoint. Two things write those registers β the host through
the control window, and the control processor through a private port of its own
β and the register map is the same either way.
[control-registers.md](control-registers.md) Β§3.
| Mode | | What it does |
|---|---|---|
| `COPY` | 0 | Move a region, source walker stepped in lockstep with the destination walker. |
| `TRANSPOSE` | 1 | Allocated, **faults if requested**. Not implemented, and not needed: every index permutation is affine, so a transpose is `COPY` with the two walkers in different orders. |
| `GATHER` | 2 | Indexed read, indices loaded from memory into an on-chip buffer. |
| `GENERATE` | 3 | Fill from a counter-based PRNG, so the bytes are a pure function of `(seed, destination address)`. |
| `FILL` | 4 | Fill with an immediate. |
| `XFORM` | 5 | A `COPY` whose read return passes through the transform slot. Β§4.3. |
Both source and destination are 6-dimensional descriptors with per-axis counts
and strides. The **destination** defines the iteration space and the source is
stepped alongside it, which is what makes a source stride of zero a broadcast
with no extra mode; a source element whose bounds check fails injects the
immediate, which is how padding works.
**`XFORM` inverts that**, and it has to: the entry size is the occupant's, so
the SOURCE walker defines the iteration space and the destination steps once per
entry. A bound axis is therefore unavailable on a transform move β a padded
element issues no read, and the occupant would wait for a beat that never comes
β so the mover raises fault 7 rather than converting the wrong bytes.
The mover is word granular: every transfer is one `DATA_W`-bit beat, so strides
must be multiples of `DATA_W/8` and a misaligned descriptor faults rather than
moving the wrong bytes.
**An ordinary compute unit cannot command the mover**, and that is deliberate:
the mover has one walker and no arbitration for it, so a unit that needs data
rearranged asks for it between programs rather than inside one.
The exception is the **control processor**, and it is an exception by wiring
rather than by protocol. It sits on the mesh as a compute unit like any other,
and it also has two private wires inward that no other unit has: the mover's
config port, and a requester slot on the agent's converged path. Nothing it does
travels as a flit, so no `CU_INST` encoding covers it and nothing in this section
changes. See [arch/sysnode/control-processor](../arch/sysnode/control-processor.md).
## 5. Owner 3 β the split inside `CU_INST`
Normative, and it resolves the conflict in Β§7.
| Region | Owner | Rule |
|---|---|---|
| header `dst_*`, `src_*` | mesh | A unit MUST NOT read them for semantic purposes. The dispatcher rewrites both. |
| header `type` | mesh | Fixed at `0x5`. |
| header `txn` | mesh | Program identifier. A unit MAY read it; it MUST NOT redefine it. |
| header `last` | mesh | Batch marker. A unit MUST NOT repurpose it. |
| header `rsvd` | reserved | MUST be 0. `rsvd[2]` is the remote-mesh marker and has no meaning on a `CU_INST`; setting it would divert the instruction to the interlink. |
| payload `[255:0]` | **unit** | Entirely the unit's. The framework reads none of it, and MUST NOT begin reading any of it without a revision of this specification. |
**There is no framework-reserved region inside the `CU_INST` payload.** That is
the resolution, and it is chosen deliberately over the alternative:
- It matches the silicon. No module reads a payload bit of a `CU_INST`.
- It matches where the framework's own instruction bits already live. Owners 1
and 2 have their own encodings, in the header and in the `MEM_*` payloads. The
framework does not need a third foothold inside the unit's word.
- The alternative β honouring `noc_pkt.vh`'s `inst_len` / `inst_class` β would
declare all three compute units in the tree nonconformant for a field that
exists to describe multi-flit instructions the framework cannot deliver (Β§2).
If multi-flit instructions are ever added, the length **MUST NOT** be carved out
of a payload byte that units have already spent. The framework has unread space
of its own β `rsvd`, and the unallocated type codes `0x9`β`0xE` β and any future
mechanism belongs there.
## 6. Retirement and what it reports
A unit's encoding choices interact with retirement in exactly three places.
| Framework signal | Unit controls | Notes |
|---|---|---|
| `SIG_INST_COMPLETE.arg` | `exec_result[31:0]` | Sampled at `exec_done`. Free for anything: a cycle count, a running total, a sequence number. |
| `SIG_BATCH_COMPLETE.arg` | nothing | The framework substitutes `{24'd0, txn}`. A unit's `exec_result` is **discarded** on the final instruction of a program. A unit that needs a value out of its last instruction MUST NOT rely on the batch completion to carry it. |
| `SIG_FAULT.arg` | `exec_result[31:0]` | Sampled at `exec_done` when `exec_fault` is high. Fault codes are unit-defined; the framework allocates none. |
There is no per-instruction status other than these. There is no mechanism by
which a unit rejects an instruction: an unrecognised opcode **MUST** still retire,
either as a fault or as a no-op. A unit that stalls on an opcode it does not
know will hold its dispatch credit forever.
## 7. Known divergence: the declared split nobody implements
`src/kohakuaccel/noc/noc_pkt.vh` declares:
```
`define NOC_INST_LEN 255:248
`define NOC_INST_CLASS 247:240
`define NOC_INST_BODY 239:0
```
Facts:
- No RTL reads any of the three macros. `noc_pkt.vh` is included by no module.
- Every compute unit in the tree reads its opcode from `inst_flit[255 -: 4]` β
the top four bits of the field named `inst_len`.
- `inst_len` describes a continuation mechanism the framework does not implement
(Β§2), and `inst_class` has no consumer.
Β§5 resolves this in favour of the silicon: the payload is unit-owned and the two
macros describe a reservation that has been withdrawn. They should be removed
from `noc_pkt.vh` so the header stops asserting a claim nothing enforces.
## 8. Example: how KohakuTPU spends the 256 bits
> **Kind: Convention, and free.** The memory agent forces none of this. A unit
> may lay its payload out any way it likes.
**Illustrative only.** Nothing below is part of the contract. It is one project's
use of a field the framework leaves free, and a second accelerator on this
framework will and should look nothing like it. The layouts are reproduced here
because the only place they are currently written down is a header comment
inside a compute-unit source file, which is the wrong place for anything anyone
has to look up.
Note in passing how little of each encoding is about memory: addresses appear,
but extents, entry geometry, multicast and format conversion are all expressed by
the `MEM_RD_REQ` descriptor the unit emits, not by the instruction. That is Β§1
working.
### 8.1 `mx_cluster_cu` β matmul cluster
Opcodes: 1 `FILL`, 2 `GEMM`, 3 `DRAIN`.
| Bits | Field | Used by | Meaning |
|---|---|---|---|
| `[255:252]` | `op` | all | The opcode. |
| `[251:218]` | `addr` | FILL, DRAIN | Operand base, or destination base β the **low 34 bits**. The other six are at `[68:63]`. |
| `[217:202]` | `n` | FILL, DRAIN | Entries, or sub-tiles. 16 bits because a resident tile holds 512. |
| `[201]` | `sel` | FILL | 0 = A operand, 1 = B. |
| `[200]` | `acc` | GEMM | Accumulate into the resident tile instead of reloading it. |
| `[199:192]` | `gm` | GEMM | Row groups. |
| `[191:184]` | `gn` | GEMM | Column groups. |
| `[183:176]` | `nk` | GEMM | K blocks. |
| `[175:168]` | `anchor` | GEMM, DRAIN | Common output exponent. |
| `[167:144]` | `peers` | FILL | Other clusters receiving this fetch, `{y,x}` each. Copied straight into the read descriptor's `peer` field. |
| `[143:142]` | `npeer` | FILL | How many are present. |
| `[141]` | `preq` | FILL | **Reserved.** Every operand is already converted in memory β the cluster drives the retired `QUANT` bit to 0 unconditionally. |
| `[140:133]` | `eoff` | FILL | First local entry to write. Becomes the request's `txn`. |
| `[132:125]` | `aoff` | GEMM | Base entry on the A side. |
| `[124:117]` | `boff` | GEMM | Base entry on the B side. |
| `[116]` | `emit` | GEMM | Hand each sub-tile out as its last K block completes it. |
| `[115]` | `fuse` | DRAIN | Wait for results the sweep already emitted rather than issuing reads. |
| `[114]` | `abank` | GEMM | Which half of the A buffer this sweep reads. |
| `[113]` | `bbank` | GEMM | β¦and of B. |
| `[112]` | `fbank` | FILL | Which half this fill writes. |
| `[111]` | `dnode` | DRAIN | Send to a mesh node instead of to memory. |
| `[110:107]` | `dst_x` | DRAIN | The node. |
| `[106:103]` | `dst_y` | DRAIN | |
| `[102:95]` | `dbuf` | DRAIN | The destination's `buf_id`. See [flit-format.md](flit-format.md) Β§4.7.1 β this is a **framework namespace**, not a free field. |
| `[94:87]` | `dflags` | DRAIN | Copied verbatim into the `CU_DATA` descriptor's flags byte. |
| `[86:83]` | `dack_y` | DRAIN | Where the receiver sends its completion; 0 means back to this cluster. |
| `[82:79]` | `dack_x` | DRAIN | |
| `[78:77]` | `dmesh` | DRAIN | Destination mesh, meaningful only when `dfin` is nonzero. |
| `[76:69]` | `dfin` | DRAIN | `{fin_y, fin_x}` in that mesh. Nonzero is what makes the drain remote. |
| `[68:63]` | `addr_hi` | FILL, DRAIN | `addr[39:34]`. See below. |
| `[62:0]` | β | | Unused. |
Two encoding decisions worth copying, both of which are about **not breaking old
programs**:
- Zero means the previous behaviour, everywhere. `dnode = 0` is the memory port;
`abank = 0` is the lower half; `dfin = 0` is a local drain. An instruction
written before any of these bits existed still means what it did.
- New fields are appended downward into unused space rather than overlapped onto
an existing field's spare bits.
**THE ADDRESS IS SPLIT, AND THAT IS THE SECOND RULE APPLIED TO A WIDENING.**
Going from 34 bits to 40 could have moved every field below `addr`; instead the
six new bits went to the tail, at `[68:63]`, and `addr` stayed exactly where it
was. All-zero `addr_hi` is mesh 0, DRAM β which is what every pre-40-bit
encoding carries, so old programs still mean what they meant.
The cost is that **a reader must rejoin them**. Taking `[251:218]` alone drops
the aperture bit and the mesh id, so a staging or a remote address decodes as
local DRAM at the same offset: a legal read of the wrong window, not a fault.
`isa/cluster.py`'s `_addr` splits, `model.py`'s `full_addr` rejoins, and
`mx_cluster_cu.v:268` is `{inst_flit[68 -: 6], inst_flit[251 -: 34]}`.
### 8.2 `vec_cu` β vector core
Opcodes: 1 `IMEM`, 2 `DESC`, 3 `RUN`.
| Bits | Field | Used by | Meaning |
|---|---|---|---|
| `[255:252]` | `op` | all | The opcode. |
| `[251:243]` | `addr` | IMEM, RUN | Instruction-memory address, or the start PC. |
| `[251:249]` | `ad` | DESC | Descriptor index. Overlaps `addr` β the opcode disambiguates. |
| `[248:246]` | `fld` | DESC | Field within the descriptor. |
| `[245:212]` | `value` | DESC | The value, 34 bits. On `fld = 0` this is the **low 34** of a base address. |
| `[68:63]` | `value_hi` | DESC | `addr[39:34]`, on `fld = 0` only. A dimension never uses it. |
| `[31:0]` | `word` | IMEM | The instruction word to store. |
A base address is split here for the same reason and in the same place as the
cluster's β `isa/vector.py`'s `desc_value_hi_lsb` is 63, matching `cluster.py`'s
`addr_hi` β and it has the same trap: read `[245:212]` alone and a staging or a
remote base decodes as local DRAM at the same offset. `model.py`'s `_descriptor`
rejoins them.
This unit spends most of its 256 bits on nothing, because its real instruction
set is a kernel in its own instruction memory. `CU_INST` here is a loader plus a
start button β a legitimate shape, and a cheaper one than encoding a vector ISA
into 256 bits.
### 8.3 `mx_matmul_cu` β the earlier single-tile matmul unit
Opcodes: 1 `BLOCK`, 2 `EMIT`.
| Bits | Field | Meaning |
|---|---|---|
| `[255:252]` | `opcode` | |
| `[251:218]` | `addr_a` | BLOCK: A operand address. EMIT: destination. |
| `[217:184]` | `addr_b` | BLOCK: B operand address. |
| `[183:180]` | `tile` | Which resident sub-tile. |
| `[179]` | `first` | 1 = start the tile, 0 = accumulate into it. |
| `[178:171]` | `anchor` | Common exponent for this output tile. |
Three units, three unrelated encodings, one shared convention: the opcode is
`[255:252]`. **That convention is not part of this specification.** It is what
these three happen to do. A fourth unit may put its opcode anywhere in the
payload, and the framework will not notice.
|