Reusable mid-level building blocks for MLX — the missing layer between mlx.nn and full model implementations
Project description
mlx-arsenal
Low-level operations and reusable building blocks missing from MLX core — the toolbox you want when porting PyTorch models to Apple Silicon.
Tip: if you use Claude Code for MLX ports, the
mlx-portingskill teaches Claude to reach formlx-arsenalsubmodules (diffusion,spatial,attention,norm,encoding,moe,tiling, etc.) before hand-rolling ops.
Install
pip install mlx-arsenal
Or directly from source:
pip install git+https://github.com/dgrauet/mlx-arsenal.git
Modules
| Module | Components | Replaces (PyTorch) |
|---|---|---|
mlx_arsenal.spatial |
interpolate_nearest, interpolate_3d, avg_pool1d, replicate_pad, upsample_nearest/bilinear, pixel_shuffle/unshuffle, patchify/unpatchify, PatchEmbed2d/3d |
F.interpolate, F.avg_pool1d, F.pad(mode="replicate"), F.pixel_shuffle |
mlx_arsenal.layout |
to_channels_last/first, channels_last ctx manager, convert_conv_weights, load_safetensors |
NCHW ↔ NHWC conversion, weight transposition |
mlx_arsenal.conv |
weight_norm, WeightNorm |
nn.utils.weight_norm |
mlx_arsenal.attention |
causal_mask, sliding_window_mask |
Attention mask creation |
mlx_arsenal.norm |
PixelNorm, ScaleNorm |
Custom normalization layers |
mlx_arsenal.encoding |
FourierEmbedder |
Sinusoidal positional encoding |
mlx_arsenal.diffusion |
get_timestep_embedding, TimestepEmbedding, get_sampling_sigmas, dynamic_shift_schedule, FlowMatchEulerDiscreteScheduler, DDIMScheduler, euler_step, classifier_free_guidance, TeaCacheController |
Flow-matching + DDIM diffusion primitives |
mlx_arsenal.moe |
MoEGate, MoELayer |
Top-k mixture-of-experts dispatch |
mlx_arsenal.rasterize |
rasterize_triangles, interpolate |
Differentiable triangle rasterization with Metal z-buffer |
mlx_arsenal.tiling |
tiled_process, temporal_slice_process |
Memory-efficient large tensor processing |
mlx_arsenal.streaming |
BlockStreamer, BlockLoraSource, LoraFuser |
Low-RAM transformer block streaming from mmap'd safetensors |
mlx_arsenal.modulation |
AdaLNModulation, ScaleShiftTable, modulate, gated_residual |
DiT AdaLN modulation primitives (1 / 2 / 6 / 9-param variants) |
mlx_arsenal.ffn |
FeedForward, GatedFFN, GeGLU, SwiGLU |
Transformer FFN / MLP blocks (vanilla + gated variants) |
mlx_arsenal.loader |
SDOps, SafetensorsStateDictLoader, StateDict, read_safetensors_metadata |
State-dict key remapping chain + safetensors loader |
Quick start
from mlx_arsenal.spatial import interpolate_nearest, avg_pool1d, replicate_pad
from mlx_arsenal.layout import to_channels_last, convert_conv_weights
from mlx_arsenal.attention import causal_mask
# Resize a video tensor (B, D, H, W, C)
x_resized = interpolate_nearest(x, size=(8, 32, 32))
# Temporal pooling
pooled = avg_pool1d(temporal_features, kernel_size=2)
# Pad with edge replication (like F.pad mode="replicate")
padded = replicate_pad(x, [(0,0), (2,0), (1,1), (1,1), (0,0)])
# Convert PyTorch conv weights to MLX channels-last layout
mlx_weights = convert_conv_weights(pytorch_weights)
# Causal attention mask for autoregressive decoding
mask = causal_mask(seq_len=128, offset=kv_cache_len)
Block streaming (low-RAM transformers)
Run a 20+ GB transformer on a Mac without holding every block resident at once: keep one shared block module, and rebind its weights from memory-mapped safetensors before each block's forward.
from mlx_arsenal.streaming import BlockStreamer
# Build the model with ONE block in transformer_blocks (not num_layers).
model = build_my_transformer(num_layers=1)
load_non_block_weights(model, weights_path)
streamer = BlockStreamer(
weights_path,
block_prefix="transformer.transformer_blocks.",
)
assert streamer.block_count == num_layers # discovered from safetensors
shared_block = model.transformer_blocks[0]
prev_idx = None
for i in range(streamer.block_count):
streamer.bind(shared_block, idx=i, evict_previous=prev_idx)
x = shared_block(x, ...) # use the rebound block
prev_idx = i
For LoRA: pass a lora_fuser callable to BlockStreamer and one or
more BlockLoraSource instances to bind(..., lora_sources=...).
Quantization-aware fusion strategies stay in the caller — arsenal
only handles the discovery + indexing.
Requirements
- Python >= 3.10
- MLX >= 0.27.0
- Apple Silicon Mac
Development
pip install -e ".[dev]"
pytest tests/
# Optional: install the pre-commit hook so ruff runs on every `git commit`.
pip install pre-commit
pre-commit install
License
Apache 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlx_arsenal-0.7.0.tar.gz.
File metadata
- Download URL: mlx_arsenal-0.7.0.tar.gz
- Upload date:
- Size: 61.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58daaa773ed5f68416fe45f4ebc3167f4325e2b5a2049520800b1a1bf873c6c1
|
|
| MD5 |
8802176aba1768fdc3170dda90ad7ad3
|
|
| BLAKE2b-256 |
23b8eedebb084448d3ff02c316c3b05e6aa5f4aac2c461c1230bd08caeec09de
|
Provenance
The following attestation bundles were made for mlx_arsenal-0.7.0.tar.gz:
Publisher:
release.yml on dgrauet/mlx-arsenal
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mlx_arsenal-0.7.0.tar.gz -
Subject digest:
58daaa773ed5f68416fe45f4ebc3167f4325e2b5a2049520800b1a1bf873c6c1 - Sigstore transparency entry: 1540720627
- Sigstore integration time:
-
Permalink:
dgrauet/mlx-arsenal@9de5afe4c4bd0b8f5a73fa7bf19bafdc93c62abb -
Branch / Tag:
refs/tags/v0.7.0 - Owner: https://github.com/dgrauet
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9de5afe4c4bd0b8f5a73fa7bf19bafdc93c62abb -
Trigger Event:
push
-
Statement type:
File details
Details for the file mlx_arsenal-0.7.0-py3-none-any.whl.
File metadata
- Download URL: mlx_arsenal-0.7.0-py3-none-any.whl
- Upload date:
- Size: 52.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
696ad1376a04cfb88fa71e9f089f09636a586a3e7cdb92e8ee80cf8b1758a016
|
|
| MD5 |
74698be55f3c4a769bd902f84229440e
|
|
| BLAKE2b-256 |
5394167f12e2bc09011c5c9f96a177ca862ea7b313ef1793e5059e971706249e
|
Provenance
The following attestation bundles were made for mlx_arsenal-0.7.0-py3-none-any.whl:
Publisher:
release.yml on dgrauet/mlx-arsenal
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mlx_arsenal-0.7.0-py3-none-any.whl -
Subject digest:
696ad1376a04cfb88fa71e9f089f09636a586a3e7cdb92e8ee80cf8b1758a016 - Sigstore transparency entry: 1540720688
- Sigstore integration time:
-
Permalink:
dgrauet/mlx-arsenal@9de5afe4c4bd0b8f5a73fa7bf19bafdc93c62abb -
Branch / Tag:
refs/tags/v0.7.0 - Owner: https://github.com/dgrauet
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9de5afe4c4bd0b8f5a73fa7bf19bafdc93c62abb -
Trigger Event:
push
-
Statement type: