--- language: - en license: apache-2.0 tags: - fp8 - torchao - tile-kernels - moe - byte-level - blackwell - pretraining - fineweb-edu pretty_name: Spider-FLEXITOKENS FP8 Training Data & Code size_categories: - 10B list[int]: return [257] + list(text.encode('utf-8')) + [258] # BOS + bytes + EOS def decode(ids: list[int]) -> str: return bytes(i for i in ids if 0 <= i <= 255).decode('utf-8', errors='replace') ``` Special tokens: `PAD=256`, `BOS=257`, `EOS=258`, `IMG_START=0`, `IMG_END=1`, `IMG_PATCH=2`, `IMG_NEWLINE=3`, plus boundary and loop sentinels. ## Known Limitations - **DeepGEMM**: Blocked on sm_120 (`Unknown recipe arch_major: 12`) - **FlashMLA**: sm_100f kernels produce CUTLASS errors on sm_120 - **TransformerEngine**: `cublasLtGroupedMatrixLayoutInit_internal` symbol error - **torchao axiswise recipe**: Incompatible with gradient checkpointing + reshape on sm_120 - **torch.compile reduce-overhead mode**: Has issues; use `mode="default"` only ## License Same as Spider-FLEXITOKENS.