File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11``` mermaid
22flowchart TB
3- tryte[Packed trytes (limbs)]
4- load[Load registers (AVX/NEON)]
5- mask[Mask & expand trits]
6- multiply[Multiply columns]
7- accumulate[Accumulate into FP32/BF16]
8- store[Store to output buffer]
9- tryte --> load --> mask --> multiply --> accumulate --> store
10- style load stroke:#333,stroke-width:1px
11- style mask stroke:#f66,stroke-width:1px
12- style multiply stroke:#36c,stroke-width:1px
3+ tryte["Packed trytes (limbs)"]
4+ load["Load registers (AVX/NEON)"]
5+ mask["Mask & expand trits"]
6+ multiply["Multiply columns"]
7+ accumulate["Accumulate into FP32/BF16"]
8+ store["Store to output buffer"]
9+
10+ tryte --> load --> mask --> multiply --> accumulate --> store
11+
12+ %% GitHub-friendly styling (avoid hex colors; use named colors)
13+ style load stroke:gray,stroke-width:1px
14+ style mask stroke:red,stroke-width:1px
15+ style multiply stroke:blue,stroke-width:1px
16+
1317```
You can’t perform that action at this time.
0 commit comments