You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: apply domain fixes from contributor PRs #1782, #1784
B200/NVL72 TFLOP constants (2x correction per NVIDIA Blackwell
datasheet): B200 FP16 dense 2250 → 4500 TFLOPS, NVL72 FP16
162 → 324 PFLOPS, and all derived precision values. Applied to
hardware/registry.py (the current location, not the old
constants.py that the original PR targeted).
Kits hardware spec corrections: Pi Zero 2W is quad-core (not
single-core), Pi power specs use proper voltage/amperage format,
Nicla Vision memory corrected to 1MB SRAM + 2MB Flash + 16MB
external QSPI Flash.
Labs fixes: 404.qmd dark-mode selectors (body.quarto-dark),
lab_11 FlashAttention MathPeek speedup formula (N/B not M/d),
lab_06 tau_opt consistency (MTBF 50 hrs for 1,000 GPUs matches
the reveal text and Young-Daly formula).
Based on contributions by Shashank-Tripat in PRs #1782 and #1784.
Copy file name to clipboardExpand all lines: kits/contents/raspi/raspi.qmd
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,9 @@ Camera modules, power adapters, and SD cards are available from the same reselle
20
20
21
21
-**Raspberry Pi**: Ensure you have at least one of the boards: the Raspberry Pi Zero 2 W, Raspberry Pi 4 or 5 for the Vision Labs, and the Raspberry 5 for the GenAi labs.
22
22
-**Power Adapter**: To Power on the boards.
23
-
- Raspberry Pi Zero 2-W: 2.5 W with a Micro-USB adapter
24
-
- Raspberry Pi 4 or 5: 3.5 W with a USB-C adapter
23
+
- Raspberry Pi Zero 2-W: 5V / 2.5A via Micro-USB adapter
24
+
- Raspberry Pi 4: 5V / 3A via USB-C adapter
25
+
- Raspberry Pi 5: 5V / 5A via USB-C adapter
25
26
26
27
-**Network**: With internet access for downloading the necessary software and controlling the boards remotely.
27
28
-**SD Card (32 GB minimum) and an SD card Adapter**: For the Raspberry Pi OS.
Copy file name to clipboardExpand all lines: labs/vol1/lab_11_hw_accel.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -975,7 +975,7 @@ def build_part_e():
975
975
- **$d$**: head dimension
976
976
- **$M$**: SRAM size (on-chip memory per SM)
977
977
978
-
Speedup $\\approx M / d$, which is 2-4x at typical dimensions. Tiling keeps Q, K, V blocks in SRAM, avoiding the $N^2$ materialization in HBM.
978
+
Speedup $\\approx N / B$ (where $B$ is tile size), reaching ~10x at seq\_len=4096, tile=256. Tiling keeps Q, K, V blocks in SRAM, avoiding the $N^2$ materialization in HBM.
0 commit comments