Training neural networks directly on Apple's Neural Engine (ANE) via reverse-engineered private APIs. No CoreML training APIs, no Metal, no GPU β pure ANE compute.
I'm genuinely grateful for all the attention this project has received β I never expected a weekend research hack to blow up like this. Thank you to everyone who starred, forked, ran benchmarks on their own hardware, and shared the work. It means a lot.
That said, I want to set clear expectations about what this project is and isn't.
This is a research project, not a production framework.
The goal was to demonstrate that training on the Apple Neural Engine β and potentially other NPUs β is possible, and that the barrier has always been software support, not hardware capability. The ANE is a remarkably capable piece of silicon that Apple restricts to inference-only use through CoreML. This project bypasses that restriction using reverse-engineered private APIs to show what's possible when you give the hardware a chance.
- A proof of concept for ANE training via
_ANEClient
and_ANECompiler
private APIs - A set of benchmarks documenting real ANE performance characteristics (throughput, power, SRAM behavior)
-
A reference for anyone exploring direct ANE access outside CoreML
-
Research code that I update when I find something interesting
-
A maintained framework or library
-
A replacement for CoreML, MLX, llama.cpp, or any production inference stack
-
A path to training large models on consumer hardware (yet)
Some coverage of this project has overstated its implications. To be clear:
- Training works, but utilization is low (~5-9% of peak) with significant engineering challenges remaining
- Many element-wise operations still fall back to CPU
- This does not replace GPU training for anything beyond small research models today
The honest results β including all limitations β are documented in the accompanying articles:
I don't intend to grow this into a large community project. My focus is on original research (compiler infrastructure for edge AI optimization), and maintaining an open-source framework takes time away from that.
That said:
- I'll keep pushing updates when I discover something interesting
- Bug fixes and benchmark contributions (especially on hardware I don't own) are welcome
- Feature requests will likely go unaddressed β but feel free to fork
- PRs will be merged at a relatively slow pace, otherwise I become the bottleneck for community growth around this tech
This is MIT licensed for a reason. Everyone now has access to AI-assisted development tools that can adapt and extend code in hours. If this project is useful to you β take it, modify it, build something better. If you do something cool with it, I'd love to hear about it.If in future, community decides to maintain one source of truth repo, I'm in full support of that.
A from-scratch implementation of transformer training (forward + backward pass) running on the ANE in Apple Silicon. The ANE is a 15.8 TFLOPS FP16 (M4) inference accelerator that Apple does not expose for training. This project reverse-engineers the _ANEClient
/ _ANECompiler
private APIs and the MIL (Model Intermediate Language) format to run custom compute graphs β including backpropagation β directly on ANE hardware.
Current results:
| Model | Params | ms/step | Pipeline |
|---|---|---|---|
| Stories110M (12L, dim=768, MHA 12/12) | 109M | 91 ms | |
| Dynamic (no recompile) | |||
| Qwen3-0.6B (28L, dim=1024, GQA 16/8) | 596M | 412 ms | |
| Dynamic (no recompile) |
- All forward and backward dx passes on ANE, dW gradients on CPU (Accelerate cblas)
- Adam optimizer, gradient accumulation, checkpoint/resume via exec() restart
- GQA (Grouped-Query Attention) support with per-head tiling/reduction
- GPUβANE zero-copy pipeline via shared IOSurface (GPU prefill β ANE decode)
INT8 W8A8 quantization β 1.88x throughput (M4, H16G):
| Config | FP16 | INT8 W8A8 | Speedup |
|---|---|---|---|
| 128x conv 512ch 64x64 | 18.6 TOPS, 14.8ms | 35.1 TOPS, 7.8ms | 1.88x |
| 64x conv 512ch 64x64 | 18.4 TOPS, 7.5ms | 34.1 TOPS, 4.0ms | 1.85x |
INT8 activations halve L2 SRAM bandwidth between tiles via MIL quantize
/dequantize
ops. Weights use constexpr_affine_dequantize
(int8 stored, fp16 at compile time).
The dynamic pipeline uses shared ANE kernels with weights packed into spatial dimensions (no recompilation when weights change):
MHA models (Stories110M) β 6 kernels per layer:
| Kernel | Function |
|---|---|
sdpaFwd |
|
| QKV projection + SDPA + output projection | |
ffnFused |
|
| SwiGLU FFN (W1, W3, SiLU, W2) | |
ffnBwdW2t / ffnBwdW13t |
|
| FFN backward (split for memory) | |
sdpaBwd1 / sdpaBwd2 |
|
| SDPA backward |
GQA models (Qwen3-0.6B) β 10 kernels per layer:
Adds separate woFwd
, qBwd
, kvBwd
kernels for grouped-query attention (Q_DIM β DIM).
CPU handles: RMSNorm forward/backward, residual connections (DeepNet Ξ± scaling), loss computation, dW gradient accumulation (cblas_sgemm), Adam optimizer updates.
Key optimizations:
Channel-first CPU layoutβ matches ANE IOSurface[1,C,1,S]
format, eliminates all transpose overheadvDSP vectorized RMSNormβ 10x faster than naive (6.7ms β 0.7ms)** GCD async cblas overlap**β dW gradient sgemms run in parallel with ANE evals on a serial dispatch queue** Deferred cblas wait**β wait pushed into next step's forward pass for maximum overlap** ANE RMSNorm fusion**β RMSNorm folded into forward kernels as MIL ops (reduce_sum + pow + mul)** Wo^T fusion**β output projection backward merged into SDPA backward kernel** Forward taps**β Q, K, V, attention scores, hidden states exposed via concat outputs, avoiding CPU recompute** exec() restart**β bypasses ~119 ANE compile limit per process
βββ api_exploration.m # Initial ANE API discovery
βββ inmem_basic.m # In-memory MIL compilation proof-of-concept
βββ inmem_bench.m # ANE dispatch latency benchmarks
βββ inmem_peak.m # Peak TFLOPS measurement (2048x2048 matmul)
βββ ane_int8_bench.m # INT8 W8A8 vs FP16 throughput benchmark
βββ sram_bench.m # ANE SRAM bandwidth probing
βββ sram_probe.m # SRAM size/layout exploration
βββ gpu_ane_share.m # GPUβANE zero-copy IOSurface demo
βββ gpu_prefill_ane_decode.m # GPU prefill β ANE decode pipeline
βββ bridge/
β βββ ane_bridge.h # C-callable ANE API (compile, eval, I/O)
β βββ ane_bridge.m # Bridge implementation (int8 + fp16 weight blobs)
β βββ Makefile
βββ training/
βββ ane_runtime.h # ANE private API wrapper (compile, eval, IOSurface)
βββ ane_classifier.h # Classifier fwd (32K conv), softmax, rmsnorm on ANE
βββ train_large.m # Static pipeline (weights as constants, recompiles)
βββ training_dynamic/
β βββ train.m # Dynamic training loop (model-agnostic)
β βββ config.h # Derived sizes, structs, alloc helpers
β βββ mil_dynamic.h # MIL generators for dynamic weight kernels (GQA-aware)
β βββ io.h # IOSurface I/O, weight staging, GQA tile/reduce
β βββ models/
β β βββ stories110m.h # Stories110M config (12L, MHA)
β β βββ qwen3_06b.h # Qwen3-0.6B config (28L, GQA)
β βββ Makefile
βββ dashboard.py # Live training dashboard (blessed TUI)
βββ Makefile
Training requires pretokenized TinyStories data. To download:
cd training && bash download_data.sh
See training/README.md for detailed training instructions.
Requires macOS 15+ on Apple Silicon (tested on M4).
cd training/training_dynamic
make MODEL=stories110m # Stories110M (12L, MHA, 109M params)
make MODEL=qwen3_06b # Qwen3-0.6B (28L, GQA, 596M params)
./train --scratch # train from random init
./train --resume # resume from checkpoint
cd training && make train_large
./train_large ane_stories110M_ckpt.bin 256 100 1e-4
xcrun clang -O2 -fobjc-arc -framework Foundation -framework IOSurface -ldl \
-o ane_int8_bench ane_int8_bench.m
./ane_int8_bench
cd bridge && make
No external dependencies. Uses only system frameworks + private ANE APIs resolved at runtime via objc_msgSend
.
MIL generationβ Objective-C code constructs MIL program text at runtime, specifying convolutions (for linear layers), matmul (for attention), softmax, element-wise opsIn-memory compilationβ_ANEInMemoryModelDescriptor
compiles MIL text + weight blobs directly to ANE programs, no disk mlmodelc neededIOSurface I/Oβ Input/output tensors passed via IOSurface shared memory in[1, channels, 1, spatial]
format (fp16 or fp32; fp16 direct I/O is ~37% faster)Dynamic weightsβ Activations and weights packed into a single spatial input dimension, sliced apart inside the MIL kernel. Weights change without recompilation.Gradient flowβ Forward taps expose intermediates needed for backward; backward kernels compute dx (input gradients) on ANE; dW (weight gradients) computed on CPU via cblasINT8 quantizationβconstexpr_affine_dequantize
for int8 weights,quantize
/dequantize
between layers for int8 activation caching in L2 SRAM (1.88x throughput)
SDPA causal maskingβ ANE hardware ignoresattn_mask
in SDPA ops; causal attention is decomposed into separate Q@K^T (ANE) β mask+softmax (CPU) β scores@V (ANE)~119 compile limitβ ANE compiler leaks resources; worked around viaexec()
restart with checkpointFP16 gradient underflowβ backward matmuls underflow in fp16; fixed with global loss scaling (256 * NLAYERS
)Single-input constraintβ multi-input ANE requests cause 0x1d error; inputs packed into spatial dimension instead
Training throughput (M4):
| Model | Params | ms/step | Layers | Kernels/layer |
|---|---|---|---|---|
| Stories110M | 109M | 91 ms | 12 | 6 (MHA) |
| Qwen3-0.6B | 596M | 412 ms | 28 | 10 (GQA) |
ANE peak throughput (M4, H16G):
| Precision | Peak TOPS | Config |
|---|---|---|
| FP16 | 18.6 | 128x conv 512ch 64x64 |
| INT8 W8A8 | 35.1 | 128x conv 512ch 64x64 |
GPUβANE inference pipeline (M4, seq=256):
| Model | GPU Prefill | ANE Decode | Total |
|---|---|---|---|
| Stories110M | 6.7ms | 1.9ms | 8.8ms |
| Qwen3-0.6B | 9.7ms | 2.3ms | 12.0ms |
This project uses Apple's private, undocumented APIs (_ANEClient
, _ANECompiler
, _ANEInMemoryModelDescriptor
). These APIs are not covered by any public stability guarantee and may change or break with any macOS update. This is independent research into Apple Neural Engine architecture, using APIs discovered through runtime introspection for research and educational purposes under fair use and interoperability provisions (see Sega v. Accolade, 1992; DMCA Β§1201(f)). No Apple proprietary code or binaries are included in this repository. This project is not affiliated with or endorsed by Apple Inc. Use at your own risk.
MIT β see LICENSE
Built by a human + Claude, one weekend at a time.