Skip to content

KERN■Ship the model as a program

A small runtime verifies a typed manifest, loads hash-pinned GPU kernels, and executes the program the artifact declares.

Start with the boundary

A deployable model has three parts:

text
manifest.json     typed buffers, state, programs, and serving protocol
kernels/          compiled device modules pinned by digest
weights           the model's own checkpoint; the manifest says which tensor lands where

The runtime refuses an invalid manifest before using it. When it loads an artifact, it also checks that the supplied modules and their launch ABI match what the manifest declares.

Read the overview →

Models ship as verified GPU programs.