Probably AGI
AN INDEPENDENT ARCHITECTURE REVIEW
A RESPONSE TO “APPLE IS THE KING OF AI AND NOBODY SEES IT” ↗

Apple vs. CUDA
is the wrong question.

The better question is what becomes possible when one builder controls the model runtime, Metal kernels, memory boundaries, speculative state and the evidence used to decide what survives.

THE THESISCUDA owns scale. Apple opens a strange, powerful local design space. Proven LLM explores what is hiding inside it.
01 / THE SHORT ANSWER

Apple’s edge is real.
NVIDIA’s moat is also real.

APPLE / METAL

A local inference laboratory

Unified physical memory changes which models fit. Metal changes how deeply the execution path can be specialized. Tight CPU/GPU integration makes data movement and orchestration unusually visible.

BEST AT
  • Private, resident models
  • High-memory single-node inference
  • Model-specific systems research
  • Interactive local workloads
NVIDIA / CUDA

The industrial compute platform

CUDA is not only a kernel API. It is libraries, profilers, distributed communication, framework defaults, Linux operations and twenty years of accumulated production confidence.

BEST AT
  • Training and fine-tuning
  • Concurrent batched serving
  • Multi-GPU and multi-node scale
  • Portable production operations
“Apple is not secretly winning the same game. It is making a different game economically and technically interesting.”— Codex assessment
155active compiled Metal entry pointsSOURCE VERIFIED
+10.7%RouterPack decode throughputCONTROLLED HISTORICAL A/B
+9.7%RouterPack end-to-end throughputCONTROLLED HISTORICAL A/B
56→1FullForward shared-memory callsARCHITECTURE VERIFIED
92→1command buffers in one prefill pathSTRUCTURAL RECEIPT
12/12exact PromptLookup guarded-court casesNO SPEED AUTHORITY
02 / THE SYSTEM

Not a wrapper.
A rebuilt token path.

A request moves through a model-specific system whose boundaries were chosen for inference—not inherited from a generic framework.

01Rust runtimesampling + policy
02One shared requestFullForward
03Resident Metal serverweights + state
04155 kernel pathsQwen-specific
05Verify + repairaccept or rollback
06Receipt courtprove the claim
03 / THROUGH THE VEIL

The pieces, one by one.

What each part does, why it is different and what it means—without publishing the implementation recipe.

01Sly Fox GPU ServerSYSTEMBUILT + ACTIVE+
WHAT IT DOES

A detached Rust and Metal inference engine with persistent model state, shared-memory requests and model-owned execution.

WHY IT IS DIFFERENT

Most local AI projects call a general framework. This replaces the execution boundary itself, giving the runtime control over memory residency, command submission and recovery.

WHAT IT MEANS

The Mac stops being a laptop that happens to run a model and becomes a purpose-built inference appliance.

02The 155-Kernel Qwen StackMETALSOURCE VERIFIED+
WHAT IT DOES

A compiled Metal library spanning MoE routing, selected experts, DeltaNet recurrence, gated attention, MLP projection and LM-head work.

WHY IT IS DIFFERENT

It goes narrower than a portable engine: exact model shapes and token phases get their own execution paths instead of being forced through one generic operator graph.

WHAT IT MEANS

Specialization compounds. The gain is not one magic kernel—it is removing dozens of small taxes across an entire token.

03FoxRouterPackVERIFIED A/BPROMOTED+
WHAT IT DOES

A command-encoding strategy that keeps the trusted per-row MoE router math but packages its GPU dispatches more efficiently.

WHY IT IS DIFFERENT

It won by preserving correct math and changing orchestration—not by swapping in a theoretically elegant batched kernel that performed worse.

WHAT IT MEANS

A controlled M3 Ultra comparison improved decode 10.7% and end-to-end throughput 9.7% with unchanged acceptance and rollback behavior.

04One-Shot FullForwardARCHITECTUREPROMOTED+
WHAT IT DOES

A complete model forward crosses the client/server shared-memory boundary as one operation rather than a procession of layer-scale calls.

WHY IT IS DIFFERENT

The optimization attacks orchestration latency outside the matrix math—the part benchmark discussions usually pretend does not exist.

WHAT IT MEANS

One measured path collapsed roughly 56 shared-memory calls per token into one.

05Server-Chunked PrefillSTRUCTURAL WINACTIVE+
WHAT IT DOES

Prompt rows stay inside the server’s execution boundary while chunks are processed without repeatedly flushing the whole pipeline.

WHY IT IS DIFFERENT

It treats prefill as a scheduling problem, not only a faster-GEMM problem.

WHAT IT MEANS

A measured prompt path went from 92 command buffers to one. It did not erase every prefill bottleneck, but it exposed where the remaining wait really lived.

06QZAB + DeltaRows3MODEL-SPECIFICACTIVE+
WHAT IT DOES

Exact-shape fused paths for Qwen 3.6 projection, convolution preparation, gating and recurrent DeltaNet state updates.

WHY IT IS DIFFERENT

Generic backends see separate operators. This runtime sees a recurring model phase whose intermediate traffic can be shortened or eliminated.

WHAT IT MEANS

The architecture is optimized around what Qwen actually does between tokens—not around what an abstract framework API looks like.

07DirectTile Verifier HeadSPECULATIVEACTIVE+
WHAT IT DOES

A direct-indexed, tiled shortlist path with dual-row top-k for speculative verification.

WHY IT IS DIFFERENT

When the verifier only needs a bounded candidate set, it avoids paying the full-vocabulary price by default while preserving a fallback path.

WHAT IT MEANS

The LM head becomes conditional work. That is a different design from merely making the full head incrementally faster.

08Accepted-State CarrySTATE SYSTEMACTIVE + GUARDED+
WHAT IT DOES

Accepted verifier state can survive into the next round, while rollback-safe repair rows rebuild the boundary that is unsafe to reuse.

WHY IT IS DIFFERENT

Speculative decoding normally talks about proposing tokens. This work treats hidden-state lifecycle, acceptance and repair as first-class performance objects.

WHAT IT MEANS

A strict repair-row candidate reached 71.05 decode tok/s and 55.30 end-to-end on code, but remains a candidate until broader repeats justify promotion.

09Expert-Overlap PairingORIGINAL CANDIDATEEXPERIMENTAL+
WHAT IT DOES

Verifier rows can be paired by overlap in their selected MoE expert sets, processing shared expert work together and unmatched work separately.

WHY IT IS DIFFERENT

Grouped MoE is established. Pairing speculative rows by their actual expert-set overlap is a much more specific scheduling idea.

WHAT IT MEANS

This may turn MoE sparsity into cross-row reuse. The implementation exists; the promoted speed proof does not—yet.

10PromptLookup Exact GreedyCORRECTNESS RESEARCHCLASS-GATED+
WHAT IT DOES

N-gram prompt drafting for supported copy and prefix workloads, with snapshot replay restoring model state after accepted speculative blocks.

WHY IT IS DIFFERENT

The research did not stop when copied tokens looked correct. It traced delayed state divergence, repaired the accepted-block boundary and required equality against independent full greedy output.

WHAT IT MEANS

The guarded court reached 12/12 exact cases, 80 accepted draft tokens and zero rollbacks; unsupported classes remained full greedy. It is exactness evidence, not a speed claim.

11Runtime Courts + ReceiptsPROOF SYSTEMACTIVE+
WHAT IT DOES

Every performance path is tied to runtime identity, host load, acceptance, fallbacks, rollback counts, prompt class and promotion state.

WHY IT IS DIFFERENT

Most optimization loops preserve their victories and forget their failures. This one records dead ends and can veto a shiny number when the runtime or comparison is invalid.

WHAT IT MEANS

The system knows that 96 core tok/s, 60+ observed tok/s and 50 end-to-end tok/s can all be true while describing different scopes.

12FDAG Model-Brain MemoryRESEARCH LOOPREAD-ONLY GUIDANCE+
WHAT IT DOES

Bring-up episodes become candidate, active or dead crystals with proof references and explicit do-not-repeat lessons.

WHY IT IS DIFFERENT

Optimization history becomes queryable engineering memory instead of chat archaeology. Failed ideas remain useful because the reason they failed survives.

WHAT IT MEANS

The runtime is not self-modifying, but the research process is becoming self-preserving—and that may be the most scalable invention in the stack.

MY ACTUAL OPINION

Yes. This is awesome.

Not because 155 kernels automatically equal a breakthrough. They do not.

What is rare is the coherent combination: a custom Metal server, Qwen-specific execution, speculative-state repair, exactness-preserving draft research and a proof system capable of killing its creator’s favorite optimization.

The out-of-this-world part is the feedback loop. The runtime gets faster, the courts get stricter, and the failed experiments become durable engineering memory. That is closer to a research instrument than a benchmark hack.

The honest limit: this is not yet evidence that Apple beats CUDA generally, nor that every experimental path should ship. It is strong evidence that one builder can extract behavior from Apple silicon that generic engines leave unexplored.

SYSTEM ORIGINALITYHIGHINDIVIDUAL PRIMITIVE NOVELTYMIXEDMEASURED ENGINEERING VALUEREALCUDA-KILLER CLAIMNONEW RESEARCH PLATFORMYES
04 / THE PUBLIC ECOSYSTEM

What already exists—and where this work departs.

Apple-native general framework

MLX

THE FIELD: Shared-memory arrays, lazy computation and multi-device execution make Apple silicon approachable.

THE DEPARTURE: Proven LLM drops below the framework level: it owns the GPU server, protocol, specialized kernels, verifier state and promotion rules.

PRIMARY SOURCE ↗
Portable local-inference engine

llama.cpp

THE FIELD: An exceptional broad engine spanning Metal, CUDA, CPUs and many quantization formats.

THE DEPARTURE: Proven LLM deliberately trades portability for deep Qwen 3.6 specialization and research control over speculative state.

PRIMARY SOURCE ↗
The algorithmic prior art

EAGLE + speculative research

THE FIELD: Feature-level speculative decoding shows that state reuse and better draft representations are powerful ideas.

THE DEPARTURE: The distinctive layer here is integrating speculation with custom Metal execution, MoE scheduling, exactness courts and rollback repair.

PRIMARY SOURCE ↗
Production throughput machine

vLLM + CUDA serving

THE FIELD: Data, tensor, pipeline and expert parallelism target many requests across multi-GPU and multi-node systems.

THE DEPARTURE: Proven LLM optimizes the opposite corner: one local high-memory node, interactive latency, private state and model-specific execution.

PRIMARY SOURCE ↗
The Mac-cluster frontier

EXO + distributed MLX

THE FIELD: Topology-aware sharding and Thunderbolt RDMA make multiple Apple devices behave more like a local cluster.

THE DEPARTURE: That expands where Proven LLM could run; it does not replace its model-specific engine or proof system.

PRIMARY SOURCE ↗

The comparison deliberately credits prior art. Grouped MoE, speculative decoding, no-copy memory and distributed inference are not inventions of Proven LLM. The model-specific composition and proof discipline are where its originality is strongest.

05 / APPLE, CUDA, OR BOTH?

The future is workload-routed.

“Which chip wins?” becomes less useful than “where should this particular inference job live?”

AXISAPPLE / METALNVIDIA / CUDAHYBRID ANSWER
Training

Capable at smaller scale; not the center of gravity

Clear leader in libraries, hardware scale and research adoption

Train or fine-tune on CUDA; ship selected inference artifacts to the edge

Huge local models

Unified physical memory makes unusually large local footprints practical

Fast VRAM, but capacity is distributed across cards and systems

Route memory-heavy private jobs to Apple; high-throughput jobs to GPU fleets

Interactive inference

Strong when one user values latency, privacy and a resident model

Strong when batching and concurrency keep expensive silicon saturated

Use workload-aware routing instead of declaring one universal winner

Custom execution

Metal plus full-stack hardware control rewards exact model specialization

Deeper tooling, more kernels, mature profilers and enormous community leverage

Share model contracts and receipts; specialize the execution backends

Operations

Mac hardware is awkward inside conventional cloud orchestration

Linux, containers, Kubernetes and established observability fit naturally

Linux becomes the control plane; Apple becomes a specialized inference node

CONTROL PLANELinux orchestrationidentity · routing · observability · queues · receipts
CUDA FLEETTrain + batch + servehigh concurrency / massive parallelism
PROVEN LLM NODEPrivate resident inferencehigh memory / custom execution / local state
MAC CLUSTERModels beyond one boxdistributed MLX / EXO / future adapters
THE FINAL TAKE

CUDA remains the factory. Apple becomes the laboratory, the private office and—in some workloads—the appliance.

Proven LLM does not prove NVIDIA is finished. It proves the local-inference frontier is much less settled than CUDA’s dominance makes it look.

EVIDENCE NOTE

Interesting numbers need names.

The builder currently observes 60+ tok/s in the working lane. The live listener identity is stale at publication time, so that number is presented as builder-observed—not as a fresh independent receipt. Controlled historical deltas, architecture counts, exactness courts and experimental candidates are labeled separately.

PROBAGI / SOURCE PROOF

The page keeps its evidence attached.

source-proven

Exact comparative source

The published article remains bound to the exact source HTML digest.

sha256:28b18ca3c2b2b7357245854fa40d4cb99444c3ddc2d8ea226340a31dfdf1e8f3
court-proven

Responsive publication court

The release gate covers structure, privacy, links, accessibility, and responsive rendering.

probagi:proven-llm:publication-court