Skip to main content

High-performance MLX implementation of Manifold-Constrained Hyper-Connections (mHC)

Project description

mhc-mlx

High-performance MLX implementation of Manifold-Constrained Hyper-Connections (mHC) for Apple Silicon.

mHC improves training stability and performance in deep architectures by constraining residual connections to the Birkhoff polytope (doubly stochastic matrices). This library provides optimized Metal kernels that achieve significant speedups over standard baseline implementations.

Original Paper: mHC: Manifold-Constrained Hyper-Connections (DeepSeek-AI)

Installation

pip install mhc-mlx

Compatibility

  • Hardware: Apple Silicon (M1, M2, M3, M4).
  • Software: macOS, MLX >= 0.30.0.
  • Fallback: Automatically falls back to a compiled pure-MLX path on other platforms.

Quick Start (30-second Demo)

import mlx.core as mx
import mlx.nn as nn
from mhc_mlx import MHCRewire

# 1. Take any standard MLX layer
layer = nn.Linear(2048, 2048)

# 2. Wrap it with mHC stability (automatically uses optimized Metal kernels)
model = MHCRewire(layer, dims=2048, n=32)

# 3. Run forward pass
x = mx.random.normal((1, 2048))
y = model(x)
mx.eval(y)

# 4. Run backward pass (fully vectorized)
loss_fn = lambda m, x: mx.sum(m(x))
grads = mx.grad(loss_fn)(model, x)
mx.eval(grads)

print(f"Output shape: {y.shape}") # (1, 2048)

Note: You can also use from mlx_mhc import MHCRewire for a community-friendly alias.

Performance

mhc-mlx utilizes fused Metal kernels to minimize memory bandwidth bottlenecks. We benchmarked on an Apple M4 Pro (macOS 15.6).

Comparative Benchmarks

Comparison with a standard MLX implementation of mHC ($C=512$):

Metric mhc-mlx Baseline Impl Speedup
Inference Latency ($B=1$) 392 us 1120 us 2.86x
Training Throughput ($B=32$) 105 us 866 us 8.25x

Why It's Faster

Approach Architecture Impact
Baseline Multiple kernel launches High memory overhead, low GPU occupancy
mhc-mlx Fused Metal Kernels Minimal memory round-trips, maximal bandwidth

Reproduce Benchmarks

Run the standardized benchmark suite on your own hardware:

mhc-mlx-bench --mode latency --C 512,2048,4096

Key Optimizations

  • "Zero-Cost" Weight Folding: MHCRewire folds scaling directly into nn.Linear weights where possible.
  • Quantized Layer Support: Seamlessly wraps nn.QuantizedLinear (4-bit/8-bit).
  • Fully Fused Kernel: Single-pass kernel for Aggregate + RMS + Mix + Add.
  • Adaptive Dispatch: Runtime heuristic selects the fastest kernel strategy for your workload.

Diagnostics

If you encounter issues, run the diagnostic utility:

mhc-mlx-info

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mhc_mlx-0.5.4.tar.gz (49.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mhc_mlx-0.5.4-py3-none-any.whl (67.2 kB view details)

Uploaded Python 3

File details

Details for the file mhc_mlx-0.5.4.tar.gz.

File metadata

  • Download URL: mhc_mlx-0.5.4.tar.gz
  • Upload date:
  • Size: 49.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mhc_mlx-0.5.4.tar.gz
Algorithm Hash digest
SHA256 3a5303ded8701d7efdbc3f29b7b25503922bb669269fd1953ff615be0b490f92
MD5 0ac264b6667c7be5d208420780c6ec48
BLAKE2b-256 a50b6c87df52f17ae3e83f4b7098289d57cb9ac40d194cad9b8d18a456349bb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mhc_mlx-0.5.4.tar.gz:

Publisher: publish.yml on svdrecbd/mhc-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mhc_mlx-0.5.4-py3-none-any.whl.

File metadata

  • Download URL: mhc_mlx-0.5.4-py3-none-any.whl
  • Upload date:
  • Size: 67.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mhc_mlx-0.5.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d73ef69d324ae0fdd8ba61f9ad547cafb1c2a4d3c95f62fee1df1dbc8aef0c5b
MD5 b3bd386ad439a6b5086eb7bc5ffab80d
BLAKE2b-256 c01f2db68328df80c806c602c88b3aca8282b6a85e8eaf7a51245382d3738471

See more details on using hashes here.

Provenance

The following attestation bundles were made for mhc_mlx-0.5.4-py3-none-any.whl:

Publisher: publish.yml on svdrecbd/mhc-mlx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page