Views
No views yet
XiaomiMiMo/MiMo-V2.5
for inference on Apple Silicon via MLX.mlx-block-fp8 extension.MiMo-V2.5 uses the block_fp8 quantization scheme (DeepSeek-V3-style: unpacked
E4M3 codes + 2D FP32 scales), which is not built into MLX. The kernels for it
ship as a standalone MLX extension that builds against stock upstream MLX — no
MLX fork required.BUILD_SHARED_LIBS=ON (required — a static build
causes the extension to get a duplicate runtime and silently produce zeros):git clone https://github.com/ml-explore/mlx.git
cd mlx
CMAKE_ARGS="-DBUILD_SHARED_LIBS=ON" \
python3 -m pip install -e . --no-build-isolationmlx-block-fp8 extensiongit clone https://github.com/yohann-bearzi/mlx-block-fp8.git
cd mlx-block-fp8
python3 -m pip install -e . --no-build-isolationmlx_lm with mimo_v2 base supportmlx_lm from that branch, or copy mimo_v2.py + switch_layers.py
from it into your mlx_lm/models/ directory.mimo_v2_block_fp8.py into your mlx_lm models directory:cp mimo_v2_block_fp8.py $(python3 -c 'import mlx_lm, os; print(os.path.dirname(mlx_lm.__file__))')/models/| Setup | decode tok/s (M3 Ultra, warm) |
|---|---|
| stock MLX + extension | 29.0 |
| stock MLX + extension + SDPA #3637 | 30.0 |
import json, mlx.core as mx
import mlx_lm.utils as U
mx.set_wired_limit(300 * 1024**3) # M3 Ultra 512GB
cfg = json.load(open("config.json"))
cfg["model_type"] = "mimo_v2_block_fp8"
mc, ac = U._get_classes(cfg)
m = mc(ac.from_dict(cfg))
w = mx.load("mimo_v2.5_block_fp8.safetensors")
w = m.sanitize_block_fp8(w)
m.apply_block_fp8(w)
del w
import gc; gc.collect()
mx.eval(m.parameters())python3 convert_mimo.py --src /path/to/XiaomiMiMo/MiMo-V2.5 \
--out /path/to/output/mimo_v2.5_block_fp8.safetensors| file | what |
|---|---|
mimo_v2.5_block_fp8.safetensors | 290 GB — repacked weights (bit-identical to upstream) |
config.json | upstream config + model_type set to mimo_v2_block_fp8 |
tokenizer.json, tokenizer_config.json | upstream, verbatim |
generation_config.json | upstream, verbatim |
mimo_v2_block_fp8.py | MLX model class (drop into mlx_lm/models/) |
convert_mimo.py | converter script — reproduce this file from XiaomiMiMo’s release |
LICENSE | MIT (matches upstream) |
NOTICE | derivative-work statement |